Commit 278fa357 authored by juga's avatar juga
Browse files

Unify spaces, one command per line

parent 9db92bd8
Loading
Loading
Loading
Loading
+12 −17
Original line number Diff line number Diff line
@@ -10,10 +10,8 @@ python =
[testenv:clean]
skip_install = True
changedir={toxinidir}
deps =
   coverage
commands=
   coverage erase
deps = coverage
command = coverage erase

[testenv:integration]
ignore_errors = True
@@ -36,14 +34,12 @@ commands =
[testenv:lint]
skip_install = True
deps = .[dev]
commands =
    flake8 sbws scripts tests
commands = flake8 sbws scripts tests

[testenv:stats]
skip_install = True
changedir={toxinidir}
deps =
   .[test]
deps = .[test]
commands=
    # nothing to combine while not using several python versions
    # coverage combine
@@ -51,8 +47,7 @@ commands=
    coverage html

[testenv]
install_command =
   pip install --process-dependency-links {opts} {packages}
install_command = pip install --process-dependency-links {opts} {packages}
deps = .[test]
commands =
    coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest -s {toxinidir}/tests/unit -vv