diff options
| author | 2021-07-05 20:55:43 -0400 | |
|---|---|---|
| committer | 2021-07-05 20:55:43 -0400 | |
| commit | 646b84017810de48201355957e5067ffe5b98b38 (patch) | |
| tree | 8ee4991aa16dbcdaf4d2d42ac503a0be4ba6e807 /.github | |
| parent | chore: Change the `Code Jam Team Leader` role's name (diff) | |
| parent | Adds Documentation For Running A Single Test (#1669) (diff) | |
Merge branch 'main' into feat/code-jam-channels-automation
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 |