summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2019-04-04 23:39:27 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2019-04-04 23:39:27 -0400
commit7f91c4effbd96b51de2b63323a5ea63b19573f48 (patch)
treec4aad35c386a11691edf57aa9c159608077b928d /.travis.yml
parenta526410f2a5be83c0b853bb4e7624c77997ccd61 (diff)
parent063784db760a85236068a8bbacd01af2d1036d4b (diff)
Merge tag 'release_2017-05-24' into archweb-genericarchweb-generic
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 81cef987..4757641f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,11 @@
language: python
python:
- "2.7"
-install: "pip install -r requirements.txt"
+install: "pip install -r requirements.txt && pip install coveralls"
script:
- python manage.py collectstatic --noinput
- - python manage.py test
+ - coverage run --omit='env*' --source='.' manage.py test
+
+after_success:
+ - coveralls