Skip to content

Commit

Permalink
infra: run flake8 in webdriver/
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago Perrotta committed Nov 14, 2023
1 parent 03fcc8e commit 841ad6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tools/flake8.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ select = E,W,F,N
# E303: too many blank lines (3)
# E305: expected 2 blank lines after end of function or class
# E402: module level import not at top of file
# E501: line too long
# E731: do not assign a lambda expression, use a def
# W504: line break after binary operator
# W601: .has_key() is deprecated, use ‘in’
# N801: class names should use CapWords convention
# N802: function name should be lowercase
# N806: variable in function should be lowercase
# N818: exception should be named with an Error suffix
ignore = E128,E129,E226,E231,E251,E265,E302,E303,E305,E402,E731,W504,W601,N801,N802,N806,N818
ignore = E128,E129,E226,E231,E251,E265,E302,E303,E305,E402,E501,E731,W504,W601,N801,N802,N806,N818
exclude =
.tox,
third_party,
Expand Down
2 changes: 1 addition & 1 deletion tools/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ changedir =

commands =
!flake8-!mypy: pytest --cov=tools --cov-report=term {posargs}
flake8: flake8 --append-config={toxinidir}/flake8.ini {posargs}
flake8: flake8 --append-config={toxinidir}/flake8.ini {toxinidir} {toxinidir}/../webdriver {posargs}
mypy: mypy --config-file={toxinidir}/mypy.ini --explicit-package-bases tools

passenv =
Expand Down

0 comments on commit 841ad6b

Please sign in to comment.