Commit 113fb23abd6773fc61392782bc02e631c7fab9f1
1 parent
60cf35d28b
Exists in
master
added coverage
Showing 3 changed files with 6 additions and 1 deletions Inline Diff
.gitignore
View file @
113fb23
*~ | 1 | 1 | *~ | |
venv* | 2 | 2 | venv* | |
static* | 3 | 3 | static* | |
*.pyc | 4 | 4 | *.pyc | |
.idea* | 5 | 5 | .idea* | |
.*.swp | 6 | 6 | .*.swp | |
*.sqlite3 | 7 | 7 | *.sqlite3 | |
secrets | 8 | 8 | secrets | |
9 | .coverage | |||
10 | htmlcov* |
requirements.txt
View file @
113fb23
beautifulsoup4 | 1 | 1 | beautifulsoup4 | |
Django>=1.8 | 2 | 2 | Django>=1.8 | |
#django-websocket-redis==0.4.3 | 3 | 3 | #django-websocket-redis==0.4.3 | |
#gevent==1.0.1 | 4 | 4 | #gevent==1.0.1 | |
#greenlet==0.4.5 | 5 | 5 | #greenlet==0.4.5 | |
#redis==2.10.3 | 6 | 6 | #redis==2.10.3 | |
six==1.9.0 | 7 | 7 | six==1.9.0 | |
djangorestframework | 8 | 8 | djangorestframework | |
docutils | 9 | 9 | docutils | |
gunicorn | 10 | 10 | gunicorn | |
django-simple-email-confirmation | 11 | 11 | django-simple-email-confirmation | |
django-ses | 12 | 12 | django-ses | |
13 | coverage |
run_tests.sh
View file @
113fb23
File was created | 1 | venv/bin/coverage run --source='flashcards' manage.py test flashcards/tests/ | ||
2 | venv/bin/coverage html |