diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-13 06:43:11 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-13 07:12:46 -0500 |
| commit | edb0e698a7165b69bd5f19908d365b398bf4118f (patch) | |
| tree | f1debf93e792c3a5fa8d50e953dbce8989389d90 /.github/workflows | |
| parent | 52efb4de5e9f0ff37eeda9471d7c3aa26edfdd38 (diff) | |
| download | python-coveragepy-git-edb0e698a7165b69bd5f19908d365b398bf4118f.tar.gz | |
test(build): skip metacov on mac pypy3, it slows us down
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/coverage.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3e12f01b..b751eebc 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -44,6 +44,9 @@ jobs: # Windows PyPy doesn't seem to work? - os: windows-latest python-version: "pypy3" + # Mac PyPy always takes the longest, and doesn't add anything. + - os: macos-latest + python-version: "pypy3" # If one job fails, stop the whole thing. fail-fast: true |
