From 53a3a5fea2ad7e1d7d4380b7afa46690fa527d05 Mon Sep 17 00:00:00 2001 From: Francesco Ballarin Date: Sat, 23 Nov 2024 07:52:31 +0100 Subject: [PATCH] Drop ruff checks due to changes in ruff --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0931dda..04098f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,9 +56,6 @@ jobs: run: | git config --global --add safe.directory $PWD git clean -xdf - - name: Run ruff on python files - run: | - python3 -m ruff check . - name: Run isort on python files run: | python3 -m isort --check --diff . @@ -108,9 +105,6 @@ jobs: python3 -m pytest --ipynb-action=create-notebooks --np=2 tutorials || (($?==$NO_TESTS_COLLECTED)) python3 -m pytest --ipynb-action=create-notebooks --tag-collapse --np=2 tutorials || (($?==$NO_TESTS_COLLECTED)) shell: bash - - name: Run ruff on tutorial files - run: | - python3 -m nbqa ruff . - name: Run isort on tutorial files run: | python3 -m nbqa isort --check --diff .