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 425f19e commit 512a872Copy full SHA for 512a872
.github/workflows/test.yml
@@ -24,4 +24,4 @@ jobs:
24
pip install '.[test]'
25
- name: Run tests
26
run: |
27
- [ -d tests ] && python -m pytest || echo "Tests directory not found"
+ if [ -d tests ]; then python -m pytest; else echo "Tests directory not found"; fi
0 commit comments