Skip to content

Commit

Permalink
ci: Don't fail fast on tests
Browse files Browse the repository at this point in the history
It's nicer to see all the various causes, so it's clear if an issue is
localized or universal
  • Loading branch information
offbyone committed Sep 26, 2024
1 parent 36ef18d commit 946d570
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
USING_COVERAGE: "3.8,3.9,3.10,3.11,3.12"

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
Expand Down Expand Up @@ -60,7 +61,6 @@ jobs:
if-no-files-found: ignore
include-hidden-files: true


coverage:
needs:
- tests
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ repos:
- id: check-useless-excludes

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: debug-statements

- repo: https://github.com/asottile/blacken-docs
rev: 1.16.0
rev: 1.18.0
hooks:
- id: blacken-docs
# args: ["-l100"]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.1.1
hooks:
- id: flake8
exclude: >-
Expand All @@ -26,7 +26,7 @@ repos:
)
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.8.0
hooks:
- id: black
# args: ["-l100"]

0 comments on commit 946d570

Please sign in to comment.