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