Skip to content

Commit

Permalink
Merge pull request #151 from tompollard/tp/flake8
Browse files Browse the repository at this point in the history
Increase max width to 119 characters for Flake8 style check
  • Loading branch information
tompollard committed May 1, 2023
2 parents 92fb976 + b0daf21 commit f02fb1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .flake8
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 119
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
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 --statistics
- name: Test with pytest
run: |
pytest -vv --cov-report term-missing --cov tableone | tee coverage-report-${{ matrix.python-version }}.txt
Expand Down

0 comments on commit f02fb1c

Please sign in to comment.