There was an error while loading. Please reload this page.
1 parent d946d8d commit cbcb6e3Copy full SHA for cbcb6e3
.travis.yml
@@ -9,4 +9,6 @@ python:
9
before_install: "cd tests"
10
install: "./install.sh"
11
# command to run tests
12
-script: "./manage.py test"
+script: "coverage run --source=tests manage.py test"
13
+after_success:
14
+ coveralls
tests/.coveragerc
@@ -0,0 +1,5 @@
1
+[report]
2
+omit =
3
+ */python?.?/*
4
+ */migrations/*
5
+ */site-packages/*
.coveralls.yml renamed to tests/.coveralls.yml
tests/requirements.txt
@@ -1 +1,3 @@
Django
+coveralls
+coverage
0 commit comments