Skip to content

Commit

Permalink
Fix exclude paths for flake8 3.0.0
Browse files Browse the repository at this point in the history
Before flake8 3.0.0, the .tox directory was excluded by default. With
3.0.0 it needs to be explicitly excluded.
  • Loading branch information
oherrala committed Jul 25, 2016
1 parent 4c795e0 commit d8f5bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ skip_install = true

[flake8]
ignore = E501
exclude = ./build
exclude = build,dist,.git,.tox

[pytest]
addopts = --doctest-modules
Expand Down

0 comments on commit d8f5bf5

Please # to comment.