diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint-test.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index d96f324ec..e99e6d181 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -97,12 +97,8 @@ jobs: --format='::error file=%(path)s,line=%(row)d,col=%(col)d::\ [flake8] %(code)s: %(text)s'" - # We run `coverage` using the `python` command so we can suppress - # irrelevant warnings in our CI output. - name: Run tests and generate coverage report - run: | - python -Wignore -m coverage run -m unittest - coverage report -m + run: pytest -n auto --cov --disable-warnings -q # This step will publish the coverage reports coveralls.io and # print a "job" link in the output of the GitHub Action |