diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2016-12-02 00:15:06 +0100 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2017-01-26 13:49:55 +0100 |
commit | b71a2fa5498d6ed6cc11c2eea14f15187bcd2079 (patch) | |
tree | aa703bba37a97d50363f08831fb9943160bc5078 | |
parent | Change libtorrent minimum dependency to 1.1.1 (diff) | |
download | deluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.tar.xz deluge-b71a2fa5498d6ed6cc11c2eea14f15187bcd2079.zip |
[Tox] Remove py26 and add lt version output to trial
-rw-r--r-- | tox.ini | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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} |