From 056fe85d7c26538e7fd057fa2eb45227626484dd Mon Sep 17 00:00:00 2001 From: brb Date: Tue, 11 Jul 2023 09:47:59 +0200 Subject: [PATCH] changed linting function call --- .gitea/workflows/pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 084c862..aeac572 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -13,7 +13,7 @@ jobs: with: python-version: "3.10" architecture: "x64" - - name: Install dependencies + - name: Install Dependencies run: | python -m pip install --upgrade pip pip install flake8 pytest @@ -21,6 +21,6 @@ jobs: - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names - flake8 ./code --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 ./code # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 ./code --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics \ No newline at end of file + # flake8 ./code --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics \ No newline at end of file