We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c04c1 commit 3b22511Copy full SHA for 3b22511
.github/workflows/test-python.yml
@@ -77,7 +77,12 @@ jobs:
77
78
- name: Run tests and report coverage
79
if: github.ref_name != 'main'
80
- run: pytest --cov -n auto --dist loadgroup -m "not benchmark and not docs"
+ env:
81
+ # TODO: Re-enable coverage for for Ubuntu + Python 3.12 tests
82
+ # Currently skipped due to performance issues in coverage:
83
+ # https://github.com/nedbat/coveragepy/issues/1665
84
+ COV: ${{ !(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') && '--cov' || '' }}
85
+ run: pytest $COV -n auto --dist loadgroup -m "not benchmark and not docs"
86
87
- name: Run tests async reader tests
88
if: github.ref_name != 'main' && matrix.os != 'windows-latest'
0 commit comments