From 1f7168210bcdbc58198f22dac9724d5325b35975 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 26 Sep 2024 15:24:30 +1000 Subject: [PATCH] Remove continue-on-error from lint step --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ba3b8d9a..be842141 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,6 @@ jobs: python3 -m ensurepip --upgrade pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt - name: Lint with pre-commit hook - continue-on-error: true # XXX temporary, until all code linted run: | pre-commit run --all-files - name: Test with pytest