From 6007d86d143e591602da4c045a1b7609b1f0f358 Mon Sep 17 00:00:00 2001 From: Kai Striega Date: Sun, 12 Nov 2023 11:39:22 +0800 Subject: [PATCH] MAINT/TST: Remove lint section from main CI run This is no longer needed as we are running linting as a separate step --- .github/workflows/pythonpackage.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index a7cbe2a..ff67b07 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -19,13 +19,7 @@ jobs: run: | python -m pip install --upgrade pip poetry poetry env use ${{ matrix.python-version }} - poetry install --with=test --with=lint - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # The GitHub editor is 127 chars wide - poetry run flake8 . --ignore=F401,F403,W503,E226 --count --max-complexity=10 --max-line-length=127 --statistics + poetry install --with=test - name: Test with pytest run: | poetry run pytest