Skip to content

Commit

Permalink
ci(python): prefer explicit --no-cov flag for py3.12/ubuntu test wo…
Browse files Browse the repository at this point in the history
…rkflow (vs implicit/omitted) (pola-rs#12889)
  • Loading branch information
alexander-beedie authored Dec 4, 2023
1 parent acab791 commit c1f04d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# TODO: Re-enable coverage for for Ubuntu + Python 3.12 tests
# Currently skipped due to performance issues in coverage:
# https://github.com/nedbat/coveragepy/issues/1665
COV: ${{ !(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') && '--cov' || '' }}
COV: ${{ !(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') && '--cov' || '--no-cov' }}
run: pytest $COV -n auto --dist loadgroup -m "not benchmark and not docs"

- name: Run tests async reader tests
Expand Down

0 comments on commit c1f04d1

Please sign in to comment.