summaryrefslogtreecommitdiff
path: root/.github/workflows/codeqa-test.yml
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-12-24 02:09:09 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-12-24 02:09:09 +0200
commit895550cbb45510665f74382d18a5bc69451c7066 (patch)
tree789948575b3511420113066fe9c4210c58a524d0 /.github/workflows/codeqa-test.yml
parentbf15b29ee2fabfe8b720413be5bb929d5814cc97 (diff)
downloadwheel-git-895550cbb45510665f74382d18a5bc69451c7066.tar.gz
Moved tool configurations to pyproject.toml
Diffstat (limited to '.github/workflows/codeqa-test.yml')
-rw-r--r--.github/workflows/codeqa-test.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml
index adc83bf..342b0f7 100644
--- a/.github/workflows/codeqa-test.yml
+++ b/.github/workflows/codeqa-test.yml
@@ -59,10 +59,12 @@ jobs:
- name: Install the project
run: "pip install --no-binary=:all: ."
- name: Install test dependencies
- run: pip install .[test]
+ run: pip install .[test] coverage
- name: Test with pytest
- run: python -b -m pytest -W always --cov-report=xml:pytest-cov.xml
+ run: |
+ coverage run -m pytest -W always
+ coverage xml
- name: Send coverage data to Codecov
uses: codecov/codecov-action@v1
with:
- file: pytest-cov.xml
+ file: coverage.xml