Skip to content

Commit

Permalink
Ignore the new W504 error from flake8 to get the tests passing (#39)
Browse files Browse the repository at this point in the history
* Ignore the new W504 error from flake8 to get the tests passing

* Also ignore W504 over here

* Try reversing the order of these

* Spaces are used here

Co-Authored-By: alex <alex.gaynor@gmail.com>

* Readability

Co-Authored-By: alex <alex.gaynor@gmail.com>
  • Loading branch information
alex authored and ohemorange committed Oct 25, 2018
1 parent b0ad174 commit 9a92bcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[pytest]
addopts = -v --flake8 --isort --cov-report xml --cov-report=term-missing --cov=josepy --cov-config .coveragerc
norecursedirs = *.egg .eggs dist build docs .tox
flake8-ignore = E501
flake8-ignore = W504 E501
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ deps:
.[tests]

[flake8]
ignore = E501
ignore = W504, E501

0 comments on commit 9a92bcf

Please sign in to comment.