summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 251e43406..d1df0f031 100644
--- a/tox.ini
+++ b/tox.ini
@@ -19,7 +19,7 @@ basepython =
py3: python3.5
commands =
- pip install pyramid[testing]
+ pip install -q pyramid[testing]
nosetests --with-xunit --xunit-file=nosetests-{envname}.xml {posargs:}
[testenv:py27-scaffolds]
@@ -72,7 +72,7 @@ commands =
# combination of versions of coverage and nosexcover that i can find.
[testenv:py2-cover]
commands =
- pip install pyramid[testing]
+ pip install -q pyramid[testing]
coverage run --source=pyramid {envbindir}/nosetests
coverage xml -o coverage-py2.xml
setenv =
@@ -80,7 +80,7 @@ setenv =
[testenv:py3-cover]
commands =
- pip install pyramid[testing]
+ pip install -q pyramid[testing]
coverage run --source=pyramid {envbindir}/nosetests
coverage xml -o coverage-py3.xml
setenv =