From 8679cb78994a77acea0ac17a50974c531d91cb8d Mon Sep 17 00:00:00 2001 From: Erik Bernhardsson Date: Fri, 22 Dec 2017 15:08:46 -0500 Subject: [PATCH] enable coveralls w travis --- .travis.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 488699b..577c3bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,12 @@ python: - "2.7" - "3.5" - "3.6" -install: "pip install pytest -r requirements.txt" -script: pytest +before_install: + - pip install pytest pytest-cov + - pip install coveralls +install: + - pip install pytest -r requirements.txt +script: + - py.test +after_success: + - coveralls