We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d365f commit 04c271eCopy full SHA for 04c271e
.github/workflows/build_and_test.yml
@@ -425,8 +425,13 @@ jobs:
425
# Run the tests.
426
- name: Run tests
427
env: ${{ fromJSON(inputs.envs) }}
428
+ shell: 'script -q -e -c "bash {0}"'
429
run: |
- if [ "$MODULES_TO_TEST" == "pyspark-errors" ]; then export PATH=$PATH:$HOME/miniconda/bin && export SKIP_PACKAGING=false; fi
430
+ if [[ "$MODULES_TO_TEST" == "pyspark-errors" ]]; then
431
+ export PATH=$PATH:$HOME/miniconda/bin
432
+ export SKIP_PACKAGING=false
433
+ echo "Python Packaging Tests Enabled!"
434
+ fi
435
./dev/run-tests --parallelism 1 --modules "$MODULES_TO_TEST"
436
- name: Upload coverage to Codecov
437
if: fromJSON(inputs.envs).PYSPARK_CODECOV == 'true'
0 commit comments