Skip to content

Commit

Permalink
Added coveralls support.
Browse files Browse the repository at this point in the history
  • Loading branch information
snah committed Dec 1, 2016
1 parent ff25c61 commit 100fe1a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ python:
- "3.5-dev"
- "3.6-dev"
- "nightly"
install: pip install nose2
script: make test
install: pip install nose2 coveralls
script: make travis_test
after_success:
coveralls
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ clean:
find . -name __pycache__ -prune -exec rm -rf {} +
rm -rf .coverage htmlcov

travis_test: FORCE
nose2 $(NOSE_OPTIONS) -C --coverage ezvalue/__init__.py --coverage-report html

test: FORCE
nose2 $(NOSE_OPTIONS)

Expand Down

0 comments on commit 100fe1a

Please sign in to comment.