summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2013-07-07 18:36:16 +0200
committerStefan Kögl <stefan@skoegl.net>2013-07-07 18:36:16 +0200
commit8584ae93582437f6c15ab69c2ddbb31c12da26ca (patch)
treeab593db6b9d5c2e0bef8376f23d01ea75ed74608
parent5b7009085ab211840ca5215833b7a1456744dce2 (diff)
downloadpython-json-pointer-8584ae93582437f6c15ab69c2ddbb31c12da26ca.tar.gz
add coveralls support to .travis.yml
-rw-r--r--.travis.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 32cfffe..4c4e261 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,12 @@ python:
- "3.2"
- "3.3"
- "pypy"
-# command to install dependencies
-install: pip install
-# command to run tests
-script: nosetests tests.py
+
+install:
+ - pip install coveralls --use-mirrors
+
+script:
+ - coverage run --source=jsonpointer tests.py
+
+after_script:
+ - coveralls