Skip to content

Commit b866d66

Browse files
Update test.yml
1 parent 0e7fafd commit b866d66

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
id: check_backend_tests
4444
run: |
4545
46-
if [ -z "$(find src/ContentProcessorAPI/app/test_s -type f -name 'test_*.py')" ]; then
46+
if [ -z "$(find src/ContentProcessorAPI/app/tests -type f -name 'test_*.py')" ]; then
4747
echo "No backend test files found, skipping backend tests."
4848
echo "skip_backend_tests=true" >> $GITHUB_ENV
4949
else
@@ -54,7 +54,7 @@ jobs:
5454
- name: Run Backend Tests with Coverage
5555
if: env.skip_backend_tests == 'false'
5656
run: |
57-
pytest src/ContentProcessorAPI/app/test_s
57+
pytest src/ContentProcessorAPI/app/tests
5858
pytest --cov=. --cov-report=term-missing --cov-report=xml
5959
6060
- name: Skip Backend Tests

0 commit comments

Comments
 (0)