From c1f04d1b8885711eb29debed37845992a8e2705c Mon Sep 17 00:00:00 2001 From: Alexander Beedie Date: Mon, 4 Dec 2023 17:43:46 +0400 Subject: [PATCH] ci(python): prefer explicit `--no-cov` flag for py3.12/ubuntu test workflow (vs implicit/omitted) (#12889) --- .github/workflows/test-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index e5c1940bc538..d7ca2c66518e 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -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