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 c281cb8 commit 715f434Copy full SHA for 715f434
1 file changed
.github/workflows/python-app.yml
@@ -38,4 +38,7 @@ jobs:
38
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39
- name: Test with pytest
40
run: |
41
- pytest
+ # run tests independently to enable tests using spark session
42
+ for f in tests/test_*.py; do
43
+ pytest -q "$f" || exit 1
44
+ done
0 commit comments