summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-11-14 10:42:17 -0500
committerTres Seaver <tseaver@palladion.com>2016-11-14 10:42:17 -0500
commitc67be02ed80bb4f304914380287998c20c65f717 (patch)
tree4b7f351b2926448c8252ce2def0127f00f5e9974 /tox.ini
parentd84bc45c582cb8398608efebe21ccea957cc583b (diff)
downloadpyramid-c67be02ed80bb4f304914380287998c20c65f717.tar.gz
pyramid-c67be02ed80bb4f304914380287998c20c65f717.tar.bz2
pyramid-c67be02ed80bb4f304914380287998c20c65f717.zip
Silence pip spew.
Diffstat (limited to 'tox.ini')
-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 =