From 946d57046298b94944c65c893d95ab4159cc0aa0 Mon Sep 17 00:00:00 2001 From: Chris Rose Date: Thu, 26 Sep 2024 00:31:54 -0700 Subject: [PATCH] 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 --- .github/workflows/main.yml | 2 +- .pre-commit-config.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 38eacd3..9538c2b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: @@ -60,7 +61,6 @@ jobs: if-no-files-found: ignore include-hidden-files: true - coverage: needs: - tests diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3046634..4a75935 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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: >- @@ -26,7 +26,7 @@ repos: ) - repo: https://github.com/psf/black - rev: 23.12.1 + rev: 24.8.0 hooks: - id: black # args: ["-l100"]