summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-02-28 08:02:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-02-28 08:02:28 -0500
commit3f3856702d7e88065dd0e13f022a4d7c69eeaf6b (patch)
tree46828a9fb403c782f820b3abd6420c0d078481d2
parentf5d60436c51a47629d4afee8aa97ec69e5eeb9c7 (diff)
downloadpython-coveragepy-git-3f3856702d7e88065dd0e13f022a4d7c69eeaf6b.tar.gz
build: coverage ci should fail fast
The whole point of the coverage workflow is to combine the results at the end. If one job fails, stop everything.
-rw-r--r--.github/workflows/coverage.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 61ec9865..ee798ada 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -38,7 +38,8 @@ jobs:
# Windows PyPy doesn't seem to work?
- os: windows-latest
python-version: "pypy3"
- fail-fast: false
+ # If one job fails, stop the whole thing.
+ fail-fast: true
steps:
- name: "Check out the repo"