Skip to content

Commit 946d570

Browse files
committed
ci: Don't fail fast on tests
It's nicer to see all the various causes, so it's clear if an issue is localized or universal
1 parent 36ef18d commit 946d570

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
USING_COVERAGE: "3.8,3.9,3.10,3.11,3.12"
2222

2323
strategy:
24+
fail-fast: false
2425
matrix:
2526
os: [ubuntu-latest, macos-latest, windows-latest]
2627
python-version:
@@ -60,7 +61,6 @@ jobs:
6061
if-no-files-found: ignore
6162
include-hidden-files: true
6263

63-
6464
coverage:
6565
needs:
6666
- tests

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ repos:
55
- id: check-useless-excludes
66

77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: v4.5.0
8+
rev: v4.6.0
99
hooks:
1010
- id: debug-statements
1111

1212
- repo: https://github.com/asottile/blacken-docs
13-
rev: 1.16.0
13+
rev: 1.18.0
1414
hooks:
1515
- id: blacken-docs
1616
# args: ["-l100"]
1717

1818
- repo: https://github.com/PyCQA/flake8
19-
rev: 7.0.0
19+
rev: 7.1.1
2020
hooks:
2121
- id: flake8
2222
exclude: >-
@@ -26,7 +26,7 @@ repos:
2626
)
2727
2828
- repo: https://github.com/psf/black
29-
rev: 23.12.1
29+
rev: 24.8.0
3030
hooks:
3131
- id: black
3232
# args: ["-l100"]

0 commit comments

Comments
 (0)