Skip to content

Commit be5d56b

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

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/tester.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: tester
2-
32
on: push
4-
53
jobs:
64
test:
75
runs-on: ubuntu-latest
@@ -19,11 +17,10 @@ jobs:
1917
python -m pip install --upgrade pip
2018
pip install pytest
2119
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
22-
23-
- name: Find test files
24-
run: |
25-
find . -name "*test*.py" -o -name "*tests*.py"
2620
21+
- name: List directory structure
22+
run: find . -type f -name "*.py" | sort
23+
2724
- name: Run tests
2825
run: |
29-
python -m pytest
26+
python -m pytest guessquest/games/tests.py

0 commit comments

Comments
 (0)