From 1355c4420b703642ae775558423a151f7cf02ea3 Mon Sep 17 00:00:00 2001 From: adelosa Date: Wed, 11 Nov 2015 22:59:11 +1000 Subject: [PATCH] Update travis-ci config --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d4dd895..addd4bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,14 @@ python: # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - - "pip install pylint" - - "pip install ." + - "pip install coveralls" - "pip install -r requirements.txt" -before_script: "pylint mciutil" - # command to run tests, e.g. python setup.py test -script: python setup.py test +script: + - python setup.py install + - nosetests --with-coverage --cover-package=mciutil + +after_success: + - coveralls +