From 7f88868ff340405dd625c298d54f519194cf3e5e Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Tue, 25 Oct 2016 16:48:24 -0400 Subject: [PATCH 1/2] Disable coverage during CI runs until we can figure out how to make it not such a performance penalty --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1e6482a0ad08..39c1a8f9efe6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,7 @@ install: - python setup.py install script: - - coverage erase - - python runtests.py --coverage - - coverage combine + - python runtests.py after_success: - bash <(curl -s https://codecov.io/bash) From 4549399463762de37d0d22d13bce0f533dba8a76 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 25 Oct 2016 16:07:09 -0700 Subject: [PATCH 2/2] Remove after_success clause. --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 39c1a8f9efe6..146bc7b49aa2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,3 @@ install: script: - python runtests.py - -after_success: - - bash <(curl -s https://codecov.io/bash)