From 3c9354d94ae8c1a1d162281eb742a7eb1e9e01d9 Mon Sep 17 00:00:00 2001 From: David Trowbridge Date: Wed, 17 Apr 2024 09:17:54 -0600 Subject: [PATCH] Add a couple more items to the ruff ignore list. Ruff was configured to include a large number of checks, some of which don't currently make sense. This change updates the ignore list to include a couple things we've hit recently. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2665bd6f..68609404 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -91,4 +91,4 @@ jobs: steps: - uses: actions/checkout@v3 - run: pip install --user ruff - - run: ruff --extend-select=C4,C9,I,PLC,PLE,PLR,U --ignore=C414,I001,UP032 --target-version=py38 . + - run: ruff --extend-select=C4,C9,I,PLC,PLE,PLR,U --ignore=C414,I001,PLR0913,UP007,UP032 --target-version=py38 .