From 3901a22b591c295d2136f2dafb5423fc24d522a1 Mon Sep 17 00:00:00 2001 From: Tim Stirrat Date: Thu, 25 Jul 2024 17:26:41 +0200 Subject: [PATCH] no more ruff --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ffb7ce..4ad813a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,12 +30,12 @@ jobs: cd tests python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Lint with Ruff - run: | - cd tests - pip install ruff - ruff check --format=github --target-version=py310 . - continue-on-error: true + # - name: Lint with Ruff + # run: | + # cd tests + # pip install ruff + # ruff check --format=github --target-version=py310 . + # continue-on-error: true - name: Test with pytest run: | cd tests