From b71a2fa5498d6ed6cc11c2eea14f15187bcd2079 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 1 Dec 2016 23:15:06 +0000 Subject: [PATCH] [Tox] Remove py26 and add lt version output to trial --- tox.ini | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 3634ee633..f75ec08a1 100644 --- a/tox.ini +++ b/tox.ini @@ -61,7 +61,9 @@ commands = py.test -v --basetemp=_pytest_temp -s -m "todo" deluge/tests [testenv:trial] setenv = {[testenv]setenv}:{env:PWD}/deluge/tests whitelist_externals = trial -commands = trial --reporter=deluge-reporter deluge/tests +commands = + python -c "import libtorrent as lt; print lt.__version__" + trial --reporter=deluge-reporter deluge.tests [testenv:plugins] setenv = PYTHONPATH = {env:PWD}:{env:PWD}/deluge/plugins @@ -75,10 +77,6 @@ commands = python setup.py build_plugins --develop --install-dir={env:PWD}/deluge/plugins/ py.test -v --basetemp=_pytest_temp -s deluge/plugins -[testenv:py26] -basepython = python2.6 -commands = {[testenv:pydef]commands} - [testenv:py27] basepython = python2.7 commands = {[testenv:pydef]commands}