Skip to content

Commit

Permalink
Link code coverage service to repository #56
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Feb 21, 2016
1 parent ce6700b commit cad85ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[run]
data_file = coverage_report/.coverage
include = ./*
omit = ./*/migrations/*

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
/dsmrreader/settings.py
/coverage_report/
/backups/
/.coverage
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ python:

before_install:
- pip install codecov
- pip install python-coveralls

install:
- pip install -r dsmrreader/provisioning/requirements/base.txt -r dsmrreader/provisioning/requirements/test.txt

script:
- coverage run manage.py test --settings=dsmrreader.config.test --noinput --with-coverage
- ./manage.py test --settings=dsmrreader.config.test --noinput --with-coverage

after_success:
- codecov
- codecov
- coveralls

0 comments on commit cad85ee

Please sign in to comment.