From 8584ae93582437f6c15ab69c2ddbb31c12da26ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Sun, 7 Jul 2013 18:36:16 +0200 Subject: add coveralls support to .travis.yml --- .travis.yml | 13 +++++++++---- 1 file 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 -- cgit v1.2.1