Skip to content

Commit

Permalink
Adding coveralls to travis (dsoprea#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmakkar08 authored and dsoprea committed Sep 24, 2016
1 parent 03ad0a6 commit 3dcd557
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
*.pyc
venv*
*.svn
*.idea
*.idea
.coverage
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
language: python
python:
- "2.7"
install: pip install -r svn/resources/requirements.txt
script: nosetests
install:
- pip install -r svn/resources/requirements.txt
- pip install coveralls
script: nosetests --with-coverage --cover-package=svn
after_success:
- coveralls

0 comments on commit 3dcd557

Please sign in to comment.