Skip to content

Commit 04c271e

Browse files
committed
fix bash again
fix bash again
1 parent 89d365f commit 04c271e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build_and_test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,13 @@ jobs:
425425
# Run the tests.
426426
- name: Run tests
427427
env: ${{ fromJSON(inputs.envs) }}
428+
shell: 'script -q -e -c "bash {0}"'
428429
run: |
429-
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
430435
./dev/run-tests --parallelism 1 --modules "$MODULES_TO_TEST"
431436
- name: Upload coverage to Codecov
432437
if: fromJSON(inputs.envs).PYSPARK_CODECOV == 'true'

0 commit comments

Comments
 (0)