Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 6857:a346b5d23480
flake8 fixes.
Also had to fix a couple of files too.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 31 Aug 2022 22:56:14 -0400 |
| parents | 30815d9bd95c |
| children | 9309493b70c4 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Wed Aug 31 22:55:19 2022 -0400 +++ b/.github/workflows/ci-test.yml Wed Aug 31 22:56:14 2022 -0400 @@ -107,7 +107,8 @@ - name: run flake8 - abort for syntax error, otherwise warn only run: | # stop the build for Python syntax errors or undefined names - flake8 roundup --count --select=E9,F63,F7,F82 --show-source --statistics + # talgettext is a utility function ignore it. + flake8 roundup --count --select=E9,F63,F7,F82 --show-source --statistics --extend-exclude talgettext.py # exit-zero treats all errors as warnings. # The GitHub editor is 127 chars wide flake8 roundup --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
