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