Pamela Fox
commited on
Commit
·
aa8b5bb
1
Parent(s):
8aa7d13
Fix tests
Browse files- .coverage +0 -0
- .github/workflows/check.yaml +1 -0
- .gitignore +2 -0
- README.md +1 -0
.coverage
DELETED
Binary file (53.2 kB)
|
|
.github/workflows/check.yaml
CHANGED
@@ -39,5 +39,6 @@ jobs:
|
|
39 |
DBUSER: postgres
|
40 |
DBPASS: postgres
|
41 |
run: |
|
|
|
42 |
coverage run --source='.' manage.py test quizzes
|
43 |
coverage report
|
|
|
39 |
DBUSER: postgres
|
40 |
DBPASS: postgres
|
41 |
run: |
|
42 |
+
python manage.py collectstatic
|
43 |
coverage run --source='.' manage.py test quizzes
|
44 |
coverage report
|
.gitignore
CHANGED
@@ -1,2 +1,4 @@
|
|
1 |
.venv
|
2 |
__pycache__/
|
|
|
|
|
|
1 |
.venv
|
2 |
__pycache__/
|
3 |
+
staticfiles/
|
4 |
+
.coverage
|
README.md
CHANGED
@@ -37,6 +37,7 @@ python manage.py runserver
|
|
37 |
Run tests:
|
38 |
|
39 |
```
|
|
|
40 |
coverage run --source='.' manage.py test quizzes
|
41 |
coverage report
|
42 |
```
|
|
|
37 |
Run tests:
|
38 |
|
39 |
```
|
40 |
+
python manage.py collectstatic
|
41 |
coverage run --source='.' manage.py test quizzes
|
42 |
coverage report
|
43 |
```
|