diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/auto.yml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index 01f65bb..adec8b0 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -33,13 +33,9 @@ jobs: - name: Install poetry dependencies run: poetry install - # Run unittests - - name: Run unittests with coverage - run: poetry run python3 -m coverage run --branch -m pytest -v - - # coverage -> xml - - name: Generate coverage report - run: poetry run python3 -m coverage xml + # Run coverage xml + - name: Run unittests with coverage and generate xml + run: poetry run covxml # xml -> codecov - name: Upload coverage reports to Codecov @@ -49,4 +45,4 @@ jobs: # pylint - name: Run pylint against the code - run: poetry run python3 -m pylint -v . + run: poetry run pylint |