From d4564faaa23d548080a5e409489aff168c35690b Mon Sep 17 00:00:00 2001 From: Fritz Brand Date: Wed, 16 Oct 2024 11:42:56 +0200 Subject: [PATCH] Updated CI --- .github/workflows/ci.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30d35590..7945d7f7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,15 +25,6 @@ jobs: - name: Install dependancies run: | poetry install - - name: Lint - run: | - poetry run black --check . - poetry run isort -c . - poetry run mypy . - poetry run flake8 - - name: Test - run: | - poetry run pytest - name: Check formatting # Lints/tests should always run, even if other lints/tests have failed. if: success() || failure() && steps.install-deps.outcome == 'success' @@ -46,4 +37,4 @@ jobs: - name: Run tests if: success() || failure() && steps.install-deps.outcome == 'success' run: | - poetry run pytest -vv + poetry run pytest -vv