1 parent 7c2b8a7 commit 2f6b3cfCopy full SHA for 2f6b3cf
1 file changed
.github/workflows/ci.yml
@@ -43,10 +43,19 @@ jobs:
43
pip install -r requirements-dev.txt
44
45
- name: Run tests
46
- run: python -m pytest tests -q
+ run: |
47
+ if [ -d tests ]; then
48
+ python -m pytest tests -q
49
+ else
50
+ echo "No backend/tests directory in this checkout; skipping backend tests."
51
+ fi
52
53
- name: Compile check
- run: python -m compileall -q app tests
54
55
+ python -m compileall -q app
56
57
+ python -m compileall -q tests
58
59
60
docker:
61
name: Backend Docker build
0 commit comments