From aede386d53d1300e9d171b36c9106275db08cda7 Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Fri, 13 Oct 2023 09:25:09 -0700 Subject: [PATCH] Update python-lint-test.yml enabled linting. --- .github/workflows/python-lint-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-lint-test.yml b/.github/workflows/python-lint-test.yml index 344bc55..6a1a727 100644 --- a/.github/workflows/python-lint-test.yml +++ b/.github/workflows/python-lint-test.yml @@ -27,9 +27,9 @@ jobs: run: | echo "CI linting not implemented" # stop the build if there are Python syntax errors or undefined names - #flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - #flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Running pytest tests run: | echo "CI tests not implemented"