Skip to content

Commit

Permalink
DX: Work-around: Tox crashes on flake8 format setting.
Browse files Browse the repository at this point in the history
- Running flake8 via tox, e.g., `tox -e flake8` crashes.
  Setuptools uses configparser to read the config, which
  throws configparser.InterpolationMissingOptionError because
  of the percent (%) symbols in the format string.
  - Ref:
    pytest-dev/pytest#3062
    pypa/pip#5182
  • Loading branch information
hotoffthehamster committed Apr 8, 2020
1 parent d8599e7 commit ae3a8e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# vim:tw=0:ts=2:sw=2:et:norl:ft=config
[flake8]
# Add a space after the path to make the output path easier to double-click-copy.
format=%(path)s %(row)d:%(col)d: %(code)s %(text)s

1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ graft tests
# - NOTE: Order this like `git ls-files`, to keep it easy to maintain.
exclude .coveragerc
exclude .editorconfig
exclude .flake8
exclude .gitignore
exclude .ignore.example
exclude .readthedocs.yml
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ exclude =
.pytest_cache/
__pycache__
max-line-length = 89
# Add a space after the path to make the output path easier to double-click-copy.
format=%%(path)s %%(row)d:%%(col)d: %%(code)s %%(text)s
# See list of error codes (we can list here to ignore):
#
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
Expand Down

0 comments on commit ae3a8e7

Please sign in to comment.