From b228bd524b819cfa45f6c7ca984500fa8ba2ee3a Mon Sep 17 00:00:00 2001 From: Dennis Siemensma Date: Sun, 27 Nov 2016 20:29:49 +0100 Subject: [PATCH] Add code coverage with Codecov in Travis --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e09c73f..83613fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,17 @@ language: python + python: - 2.7 - 3.4 - 3.5 -install: pip install tox-travis + +install: pip install tox-travis codecov + script: tox + +after_success: + - codecov + matrix: allow_failures: - python: 2.7