From 61cb9ba5943d54c2700ecf85e111011ef87a6ecc Mon Sep 17 00:00:00 2001 From: Colin Ho Date: Wed, 2 Oct 2024 09:58:16 -0700 Subject: [PATCH] rebase --- .github/workflows/python-package.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5ddd313e99..39596d90ab 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -221,10 +221,6 @@ jobs: matrix: python-version: ['3.8'] daft-runner: [py, ray] - enable-native-executor: [0, 1] - exclude: - - daft-runner: ray - enable-native-executor: 1 steps: - uses: actions/checkout@v4 with: @@ -348,6 +344,7 @@ jobs: pytest tests/io -m 'integration' --durations=50 env: DAFT_RUNNER: ${{ matrix.daft-runner }} + DAFT_ENABLE_NATIVE_EXECUTOR: ${{ matrix.enable-native-executor }} - name: Send Slack notification on failure uses: slackapi/slack-github-action@v1.26.0 if: ${{ failure() && (github.ref == 'refs/heads/main') }} @@ -448,6 +445,7 @@ jobs: pytest tests/integration/io -m 'integration and not benchmark' --credentials --durations=50 env: DAFT_RUNNER: ${{ matrix.daft-runner }} + DAFT_ENABLE_NATIVE_EXECUTOR: ${{ matrix.enable-native-executor }} - name: Send Slack notification on failure uses: slackapi/slack-github-action@v1.26.0 if: ${{ failure() }} @@ -529,6 +527,7 @@ jobs: pytest tests/integration/iceberg -m 'integration' --durations=50 env: DAFT_RUNNER: ${{ matrix.daft-runner }} + DAFT_ENABLE_NATIVE_EXECUTOR: ${{ matrix.enable-native-executor }} - name: Send Slack notification on failure uses: slackapi/slack-github-action@v1.26.0 if: ${{ failure() && (github.ref == 'refs/heads/main') }}