We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03455db commit 22ea8eaCopy full SHA for 22ea8ea
1 file changed
.github/workflows/test.yml
@@ -43,7 +43,7 @@ jobs:
43
id: check_backend_tests
44
run: |
45
46
- if [ -z "$(find src/ContentProcessorAPI/app/test_s -type f -name 'test_*.py')" ]; then
+ if [ -z "$(find src/ContentProcessorAPI/app/tests -type f -name 'test_*.py')" ]; then
47
echo "No backend test files found, skipping backend tests."
48
echo "skip_backend_tests=true" >> $GITHUB_ENV
49
else
@@ -54,7 +54,7 @@ jobs:
54
- name: Run Backend Tests with Coverage
55
if: env.skip_backend_tests == 'false'
56
57
- pytest src/ContentProcessorAPI/app/test_s
+ pytest src/ContentProcessorAPI/app/tests
58
pytest --cov=. --cov-report=term-missing --cov-report=xml
59
60
- name: Skip Backend Tests
0 commit comments