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 be5d56b commit 5b77404Copy full SHA for 5b77404
.github/workflows/tester.yml
@@ -15,12 +15,12 @@ jobs:
15
- name: Install dependencies
16
run: |
17
python -m pip install --upgrade pip
18
- pip install pytest
+ pip install django pytest pytest-django
19
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
20
21
- - name: List directory structure
22
- run: find . -type f -name "*.py" | sort
23
-
24
- - name: Run tests
+ - name: Run Django tests
+ run: |
+ cd guessquest
+ python manage.py test games
25
26
python -m pytest guessquest/games/tests.py
0 commit comments