From f01bb49234327994d3eece0abbd301ebc710dda4 Mon Sep 17 00:00:00 2001 From: Manuel Holtgrewe Date: Fri, 26 Mar 2021 18:45:37 +0100 Subject: [PATCH] Using coveralls in CI for code coverage (#86) * Adding coveralls to CI * Dropping some test requirement constraints --- .github/workflows/ci.yml | 2 ++ requirements/test.txt | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5549e2a..112f954 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,8 @@ jobs: run: coverage report - name: Create XML report for codacy run: coverage xml + - name: Coveralls + uses: AndreMiras/coveralls-python-action@develop - name: Run codacy-coverage-reporter uses: codacy/codacy-coverage-reporter-action@master with: diff --git a/requirements/test.txt b/requirements/test.txt index 7fd9379..2b49c57 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -7,10 +7,10 @@ tox ==2.9.1 pytest >=3.6.0 pytest-runner >=2.11.1 pytest-cache >=1.0 -pytest-cov >=2.4.0 +pytest-cov # Coverage report -coverage==4.5.1 +coverage codacy-coverage >=1.3.6 # Flake8 for lintoing