From a7c97faa2451199ab2b55a6c8f76f6874ec10094 Mon Sep 17 00:00:00 2001 From: Fran Romero Date: Fri, 23 Oct 2015 01:39:49 +0200 Subject: [PATCH] Added coveralls Added coveralls support --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 05f35ac..663a730 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,13 @@ language: python + python: - 2.7 +install: + - pip install coveralls + script: - - nosetests \ No newline at end of file + - nosetests --with-coverage --cover-package=calculator + +after_success: + - coveralls \ No newline at end of file