diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 8e2cb637..00000000 --- a/.coveragerc +++ /dev/null @@ -1,7 +0,0 @@ -[run] -relative_files = true -[report] -exclude_lines = - pragma: no cover - def __repr__ - raise NotImplementedError \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a7a2159..ffe5e279 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,8 +64,8 @@ jobs: - name: Run Tests with Coverage run: | - poetry run coverage run --rcfile=.coveragerc -m pytest - poetry run coverage xml -i -o coverage.xml + poetry run coverage run -m pytest + poetry run coverage xml -o coverage.xml env: COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"