summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2016-12-02 00:15:06 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2017-01-26 13:49:55 +0100
commitb71a2fa5498d6ed6cc11c2eea14f15187bcd2079 (patch)
treeaa703bba37a97d50363f08831fb9943160bc5078
parentChange libtorrent minimum dependency to 1.1.1 (diff)
downloaddeluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.tar.xz
deluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.zip
[Tox] Remove py26 and add lt version output to trial
-rw-r--r--tox.ini8
1 files 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}