From 9bb89460ca26a0abee9d517c5857904f03d5e3a9 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Thu, 8 Oct 2015 13:46:12 +0300 Subject: [PATCH] Add codecov.io service support --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ec6bf7e..479ef3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,16 @@ python: - "3.3" - "3.4" - "3.5" +after_success: + - codecov +before_install: + # codecov.io + - pip install codecov pytest-cov install: - pip install -r requirements.txt - pip install --editable . -script: py.test +script: + - py.test && py.test --cov-report xml --cov=certidude tests/ cache: directories: - $HOME/.cache/pip