[tor-commits] [sbws/master] Unify spaces, one command per line

juga at torproject.org juga at torproject.org
Mon Sep 24 20:30:36 UTC 2018


commit 278fa35737c61936b4f3e24de8ec59878e9181cc
Author: juga0 <juga at riseup.net>
Date:   Fri Sep 14 10:21:51 2018 +0000

    Unify spaces, one command per line
---
 tox.ini | 29 ++++++++++++-----------------
 1 file changed, 12 insertions(+), 17 deletions(-)

diff --git a/tox.ini b/tox.ini
index 45f004d..132e904 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,16 +4,14 @@ envlist = clean, lint, py35, py36, integration, stats
 
 [travis]
 python =
-  3.5: lint, py35, integration
-  3.6: py36, integration
+    3.5: lint, py35, integration
+    3.6: py36, integration
 
 [testenv:clean]
 skip_install = True
 changedir={toxinidir}
-deps =
-   coverage
-commands=
-   coverage erase
+deps = coverage
+command = coverage erase
 
 [testenv:integration]
 ignore_errors = True
@@ -36,26 +34,23 @@ 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
-   coverage report
-   coverage html
+    # nothing to combine while not using several python versions
+    # coverage combine
+    coverage report
+    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
+    coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest -s {toxinidir}/tests/unit -vv
 
 
 [testenv:doc]





More information about the tor-commits mailing list