From f7a7c869bd10448c61bfcbefd2b8e2f878489914 Mon Sep 17 00:00:00 2001 From: Sam Sneddon Date: Tue, 23 Jun 2020 00:38:13 +0100 Subject: [PATCH] Stop running coverage on Travis/AppVeyor --- .appveyor.yml | 6 +----- .travis.yml | 6 +----- tox.ini | 2 +- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 92f34f15..a1a3e347 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,6 @@ environment: global: PATH: "C:\\Python27\\Scripts\\;%PATH%" - PYTEST_COMMAND: "coverage run -m pytest" matrix: - TOXENV: py27-base - TOXENV: py27-optional @@ -17,7 +16,7 @@ environment: install: - git submodule update --init --recursive - - python -m pip install tox codecov + - python -m pip install tox build: off @@ -26,6 +25,3 @@ test_script: after_test: - python debug-info.py - -on_success: - - codecov diff --git a/.travis.yml b/.travis.yml index 6561e2a3..d2d9e30e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,17 +13,13 @@ cache: pip env: global: - - PYTEST_COMMAND="coverage run -m pytest" - TOXENV=base,optional,six19-optional install: - - pip install tox codecov + - pip install tox script: - tox after_script: - python debug-info.py - -after_success: - - codecov diff --git a/tox.ini b/tox.ini index 58758cea..16b8cf41 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ deps = doc: Sphinx passenv = - PYTEST_COMMAND + PYTEST_COMMAND # this is maintained so one can, e.g., PYTEST_COMMAND="coverage run -m pytest" COVERAGE_RUN_OPTIONS commands = six19: pip install six==1.9