Skip to content

Commit 7169695

Browse files
authored
Update tester.yml
1 parent effa400 commit 7169695

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/tester.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@ jobs:
2020
pip install pytest
2121
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2222
23+
- name: Find test files
24+
run: |
25+
find . -name "*test*.py" -o -name "*tests*.py"
26+
2327
- name: Run tests
24-
run: python -m pytest tests.py
28+
run: |
29+
python -m pytest

0 commit comments

Comments
 (0)