From 3012dbefa31e563d97cfc907e2a22ac584ba9aaf Mon Sep 17 00:00:00 2001 From: "j.aschauer" Date: Thu, 16 Nov 2023 10:36:22 +0100 Subject: [PATCH] remove linting job from github actions --- .github/workflows/test.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0fd0c04d..7987fae6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -31,10 +31,6 @@ jobs: python -m pip install --upgrade pip pip install -r requirements-dev.txt pip install flake8-bandit flake8-bugbear flake8-builtins flake8-comprehensions flake8-docstrings flake8-eradicate flake8-isort - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names, this will be obsolete when we have pre-commit.ci - flake8 . --max-line-length=88 --extend-ignore=E203,I001,I005,D101,D103,D105,B023,S603,S608,S101,S310,E402 --docstring-convention=numpy - name: Test with pytest run: | # run tests with pytest (unittest tests will be collected as well)