Skip to content

Commit

Permalink
tox: add pep8 rule
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Oct 24, 2016
1 parent bf8386f commit 9044cbe
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
[tox]
envlist = py3
envlist = py3, pep8

[testenv]
basepython = python3
deps=
nose
commands=
nosetests -v bytecode.tests

[testenv:pep8]
basepython = python3
deps = flake8
commands =
flake8 bytecode setup.py

[flake8]
# E501 line too long (88 > 79 characters)
# W503 line break before binary operator
ignore = E501,W503

0 comments on commit 9044cbe

Please sign in to comment.