Skip to content

Commit 2d18c1d

Browse files
committed
BUG: Pytest.
1 parent eb2664a commit 2d18c1d

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ jobs:
4848
run: |
4949
python download_all_data.py --strict
5050
51-
- name: Run unit tests
51+
- name: Run tests (individually via pytest)
5252
run: |
53-
python -m unittest discover -s tests
53+
pip install pytest
54+
for f in tests/test_*.py; do
55+
echo "🔍 Running $f"
56+
pytest -v -s "$f" || exit 1
57+
done

0 commit comments

Comments
 (0)