From 66198f46ab7a58e91331da69b29ca5de3059c947 Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Mon, 2 Nov 2015 13:56:36 -0500 Subject: [PATCH] Adding support for Codecov This change updates the .travis.yml file to add support for Codecov reporting. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e448af9..83a247e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: python install: - pip install tox - pip install bandit + - pip install codecov - pip install coveralls script: - tox @@ -13,5 +14,5 @@ env: - TOXENV=py34 - TOXENV=bandit after_success: + - codecov - coveralls -