Skip to content

Commit

Permalink
remove --isolated option for flake8
Browse files Browse the repository at this point in the history
- unlikely that travis ci has "user" flake8 settings installed
- setting up in-project settings in setup.cfg is not a bad thing
  (but be wary of per-user settings stored outside the project!)
  • Loading branch information
freddrake committed Oct 30, 2018
1 parent 04a24bf commit b2b641d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ install:
- pip install -U -e .[test]
script:
- coverage run -m zope.testrunner --test-path=.
- flake8 --isolated setup.py ZConfig
- flake8 setup.py ZConfig
notifications:
email: false
after_success:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist = py27,py34,py35,py36,py37,pypy
[testenv]
commands =
zope-testrunner --test-path=.
flake8 --isolated setup.py ZConfig
flake8 setup.py ZConfig
deps =
.[test]
flake8
Expand Down

0 comments on commit b2b641d

Please sign in to comment.