Skip to content

Commit

Permalink
MAINT/TST: Remove lint section from main CI run
Browse files Browse the repository at this point in the history
This is no longer needed as we are running linting as a separate step
  • Loading branch information
Kai-Striega committed Nov 12, 2023
1 parent 354f8c6 commit 6007d86
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6007d86

Please sign in to comment.