This is an automated email from the ASF dual-hosted git repository.
github-merge-queue[bot] pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git
from 8e80187a61 fix(workflow-operator): validate
zero-shot-image-classification labels before running (#7585)
add c37f6ab7c6 feat(csv-scan): keep a numeric column's type when one of
its cells is blank (#7568)
add 2f77d5ab93 test(workflow-operator): route Python tests to
amber-integration (#7207)
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 13 +-
amber/build.sbt | 20 +-
common/workflow-operator/build.sbt | 13 +
.../source/scan/csv/CSVScanSourceOpDesc.scala | 5 +-
.../amber/operator}/tags/IntegrationTest.java | 33 +-
.../src/test/resources/python/hanging_worker.py | 87 ++++
.../src/test/resources/python/py_compile_worker.py | 77 ++++
.../source/scan/csv/CSVScanSourceOpDescSpec.scala | 24 +
.../amber/util/PythonCodeRawInvalidTextSpec.scala | 161 ++++++-
.../amber/util/python/PythonWorkerPool.scala | 503 +++++++++++++++++++++
.../amber/util/python/PythonWorkerPoolSpec.scala | 266 +++++++++++
project/TestFilters.scala | 48 ++
12 files changed, 1205 insertions(+), 45 deletions(-)
copy {amber/src/test/integration/org/apache/texera/amber =>
common/workflow-operator/src/test/java/org/apache/texera/amber/operator}/tags/IntegrationTest.java
(50%)
create mode 100644
common/workflow-operator/src/test/resources/python/hanging_worker.py
create mode 100644
common/workflow-operator/src/test/resources/python/py_compile_worker.py
create mode 100644
common/workflow-operator/src/test/scala/org/apache/texera/amber/util/python/PythonWorkerPool.scala
create mode 100644
common/workflow-operator/src/test/scala/org/apache/texera/amber/util/python/PythonWorkerPoolSpec.scala
create mode 100644 project/TestFilters.scala