summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2019-04-04 23:41:40 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2019-04-04 23:41:40 -0400
commitf013c8d8cb06f7c993bbc41519de5ab7dd2ce0c4 (patch)
treeaa1c56be991f8584b47f62d695cb88941fdce638 /.travis.yml
parentb5ed13a7eccddf71fb48d3fe8679f70d786d3fe5 (diff)
parent7f91c4effbd96b51de2b63323a5ea63b19573f48 (diff)
Merge branch 'archweb-generic' into lukeshu/masterHEADparabolaweb-2019-04-07masterlukeshu/master
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