diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-30 10:11:25 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-30 10:11:25 -0500 |
commit | e50c2b3f231c71c04cbe65faadafb5f583cf46bb (patch) | |
tree | 0544425c90eec56a3abc41ebc76578e4272b06be | |
parent | 415a6e19afa04244d0d5d9a605a14625d108f7e7 (diff) | |
download | python-coveragepy-git-e50c2b3f231c71c04cbe65faadafb5f583cf46bb.tar.gz |
temp: trim this down for speed
-rw-r--r-- | .github/workflows/coverage.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 78359be3..b6cf37c8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -28,18 +28,18 @@ jobs: matrix: os: - ubuntu-latest - - macos-latest - - windows-latest + #- macos-latest + #- windows-latest python-version: # When changing this list, be sure to check the [gh-actions] list in # tox.ini so that tox will run properly. - - "3.6" - - "3.7" - - "3.8" + #- "3.6" + #- "3.7" + #- "3.8" - "3.9" - "3.10" - - "3.11.0-alpha.2" - - "pypy3" + #- "3.11.0-alpha.2" + #- "pypy3" exclude: # Windows PyPy doesn't seem to work? - os: windows-latest @@ -74,7 +74,7 @@ jobs: COVERAGE_CONTEXT: "${{ matrix.python-version }}.${{ matrix.os }}" run: | set -xe - python -m tox + python -m tox -- -k q - name: "Upload coverage data" uses: actions/upload-artifact@v2 |