summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2016-12-01 23:15:06 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2017-01-26 12:49:55 +0000
commitb71a2fa5498d6ed6cc11c2eea14f15187bcd2079 (patch)
treeaa703bba37a97d50363f08831fb9943160bc5078 /tox.ini
parent3ca012ee631473da449157bf81b75664f3307924 (diff)
downloaddeluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.tar.gz
deluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.tar.bz2
deluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.zip
[Tox] Remove py26 and add lt version output to trial
Diffstat (limited to 'tox.ini')
-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}