From fcae5ffe36adc17e0ef1d3a46994ac4db0e985bc Mon Sep 17 00:00:00 2001 From: Christopher Tomkins-Tinch Date: Thu, 21 Mar 2024 23:08:36 -0400 Subject: [PATCH] explicitly tell coverage.py to use .coveragerc file for config --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 71ecfd65..195fcf98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -140,7 +140,7 @@ jobs: runs-on: ubuntu-20.04 env: GITHUB_ACTIONS_PYTHON_VERSION: "3.10" - PYTEST_ADDOPTS: "-rsxX --durations=25 --fixture-durations=10 --junit-xml=pytest.xml --cov-report xml:coverage.xml --cov-report= --cov interhost --cov intrahost --cov ncbi --cov phylo" + PYTEST_ADDOPTS: "-rsxX --durations=25 --fixture-durations=10 --junit-xml=pytest.xml --cov-config=.coveragerc --cov-report xml:coverage.xml --cov-report= --cov interhost --cov intrahost --cov ncbi --cov phylo" steps: - name: checkout repository uses: actions/checkout@v4