Skip to content

Commit 06f0a0d

Browse files
committed
build: use tox and publish coverage report to coveralls.io
1 parent 97278d8 commit 06f0a0d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
language: python
2-
python:
3-
- "2.6"
4-
- "2.7"
52
# command to install dependencies
6-
install: "pip install . unittest2"
7-
# command to run tests
8-
script: nosetests
3+
install: pip install tox
4+
# run tests
5+
script:
6+
- tox -e py26
7+
- tox -e py27
8+
after_success:
9+
- tox -e cover
10+
- coveralls

0 commit comments

Comments
 (0)