From af257fee1439f6fe8132429bd9b56a4d589406d6 Mon Sep 17 00:00:00 2001 From: Will Roberts Date: Tue, 24 Mar 2015 13:31:58 +0100 Subject: [PATCH] .travis.yml: add coveralls integration --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61e0994..e644439 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ python: - "3.3" - "3.4" # command to install dependencies -install: "pip install ." +install: "pip install . coveralls" # command to run tests -script: nosetests +script: + coverage run --source=pytimeparse setup.py test +after_success: + coveralls