We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7169695 commit be5d56bCopy full SHA for be5d56b
.github/workflows/tester.yml
@@ -1,7 +1,5 @@
1
name: tester
2
-
3
on: push
4
5
jobs:
6
test:
7
runs-on: ubuntu-latest
@@ -19,11 +17,10 @@ jobs:
19
17
python -m pip install --upgrade pip
20
18
pip install pytest
21
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"
26
+ - name: List directory structure
+ run: find . -type f -name "*.py" | sort
+
27
- name: Run tests
28
run: |
29
- python -m pytest
+ python -m pytest guessquest/games/tests.py
0 commit comments