Skip to content

Commit

Permalink
Add Coveralls coverage testing to CI.
Browse files Browse the repository at this point in the history
I don't think the number matters that much and I wouldn't want to make
coverage a hard rule for PR's, but I think keeping an eye on the affect
our changes make would help us move in the right direction.
  • Loading branch information
ryneeverett committed Mar 5, 2016
1 parent 2fdfcd1 commit 623a02a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ before_install:
- pip install mock
- pip install unittest2
- cd $TRAVIS_BUILD_DIR
install: pip install .[jira,megaplan,activecollab]
script: nosetests -w tests
install:
- pip install .[jira,megaplan,activecollab]
- pip install coveralls
- pip install coverage
script: nosetests -w tests --with-coverage --cover-package=bugwarrior
after_success: coveralls
notifications:
email: true
irc:
Expand Down

0 comments on commit 623a02a

Please sign in to comment.