From 8b44d41d21052748911bf7fbac21a3e7030c4d9d Mon Sep 17 00:00:00 2001 From: chriskn Date: Tue, 2 Jul 2019 18:35:20 +0200 Subject: [PATCH] revome coverage tool and use only pytest-cov --- .travis.yml | 5 ++--- requirements.txt | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ed7458..6c94f09 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,6 @@ install: - pip install pytest - pip install pytest-cov - pip install codecov - - pip install coveralls - pip install -r requirements.txt script: pytest --ignore=test_integration @@ -29,8 +28,8 @@ script: pytest --ignore=test_integration jobs: include: - <<: *windows_os - name: Integration test using Python 3.7.3 on Windows - script: coverage run --source=sat --branch -m pytest --cov-config=conf/.coveragerc + name: Run all tests and coverage with Python 3.7.3 on Windows + script: pytest --cov=sat --cov-report=term --cov-branch --cov-config=conf/.coveragerc after_success: codecov - stage: quality diff --git a/requirements.txt b/requirements.txt index 752f28f..a9b62fa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,6 @@ matplotlib pandas xlwt -coverage pytest mock pillow