summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited 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