Skip to content

Commit

Permalink
running flake8 instead of pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
hackaugusto committed Nov 3, 2016
1 parent 00e2596 commit 5322829
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,coverage,flake8
envlist = py27,coverage

[testenv:devenv]
envdir = devenv
Expand All @@ -9,9 +9,9 @@ changedir = {toxinidir}/raiden
deps =
-rrequirements.txt
pdbpp
pep8
flake8
commands =
pep8 --exclude .eggs,.tox,devenv,tools/ansible .
flake8 .
py.test --blockchain-type=tester --exitfirst --ignore tests/test_webui.py --ignore tests/integration {posargs}
py.test --blockchain-type=tester --exitfirst --ignore tests/test_webui.py tests/integration {posargs}

Expand All @@ -20,9 +20,9 @@ changedir = {toxinidir}/raiden
deps =
-rrequirements.txt
coverage==4.0
pep8
flake8
commands =
pep8 --exclude .eggs,.tox,devenv,tools/ansible .
flake8 .
py.test --exitfirst --ignore tests/test_webui.py --ignore tests/integration {posargs}
py.test --exitfirst --ignore tests/test_webui.py tests/integration {posargs}
coverage run --source raiden --branch -m py.test --ignore tests/test_webui.py {posargs}
Expand All @@ -32,9 +32,3 @@ basepython = python2.7
skip_install = True
deps = coverage==4.0
commands = coverage report --show-missing

[testenv:flake8]
basepython = python2.7
skip_install = True
deps = flake8==2.4.1
commands = flake8 raiden

0 comments on commit 5322829

Please sign in to comment.