Skip to content
Snippets Groups Projects
Commit 55871bf8 authored by Adam Williamson's avatar Adam Williamson Committed by Dan Michael O. Heggø
Browse files

tox.ini: restore commands line, fix tabs vs. spaces (#224)


The `commands` line was accidentally(?) removed entirely in
57f716ed, so tox no longer actually ran any tests (only flake8).
This restores it, with the codestyle bit removed obviously. It
also fixes two lines where a tab was used instead of spaces.

Signed-off-by: default avatarAdam Williamson <awilliam@redhat.com>
parent 993ad8af
No related branches found
No related tags found
No related merge requests found
...@@ -3,13 +3,14 @@ envlist = py27,py34,py35,py36,flake ...@@ -3,13 +3,14 @@ envlist = py27,py34,py35,py36,flake
[testenv] [testenv]
deps = deps =
pytest pytest
pytest-cov pytest-cov
responses responses
mock mock
commands = py.test -v --cov mwclient test
[testenv:flake] [testenv:flake]
deps = deps =
flake8 flake8
commands = commands =
flake8 mwclient flake8 mwclient
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment