From d5fbfc3a00198925c03511a639941b1585a0f970 Mon Sep 17 00:00:00 2001 From: courbeb Date: Fri, 8 Dec 2023 15:24:54 +0000 Subject: [PATCH] wip --- .github/workflows/ci-workflow.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 690d828..7f58f19 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -20,7 +20,9 @@ jobs: - name: Install dev dependencies run: pip install -r requirements_test.txt - name: Run Linter - run: "Trainee should add command to run flake8" + run: | + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Run Vulture run: "Trainee should add command to run vulture" - name: Run tests