From b1273ed6936d23e60ae89e7f804a6d208737c36e Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Wed, 4 Feb 2015 11:23:41 -0500 Subject: [PATCH] Silence setuptools chatter. Prefer Python 2.7 over 2.6 for coverage, docs. --- tox.ini | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 4010935..4c01db3 100644 --- a/tox.ini +++ b/tox.ini @@ -4,20 +4,22 @@ envlist = [testenv] commands = - python setup.py dev - python -Wd setup.py test -q + python setup.py -q dev + python -Wd setup.py -q test -q [testenv:cover] basepython = - python2.6 + python2.7 commands = - python setup.py nosetests --with-xunit --with-xcoverage --cover-min-percentage=100 + nosetests --with-xunit --with-xcoverage --cover-min-percentage=100 deps = + nose + coverage nosexcover [testenv:docs] basepython = - python2.6 + python2.7 commands = sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html deps =