Skip to content

Commit d498a00

Browse files
committed
Pytest won’t automatically discover config files in subdirectories
1 parent 795f218 commit d498a00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
run: ruff check --output-format=github --target-version=py39
3030
- name: Install test dependencies
3131
run: pip install -r server/requirements.txt
32-
# Discover and run all files matching test_*.py or *_test.py under server/
32+
# Pytest won’t automatically discover config files in subdirectories
3333
- name: Run tests
34-
run: pytest server/ -v
34+
run: pytest -c server/pytest.ini server/ -v

0 commit comments

Comments
 (0)