From 60e7ae92d8a8dcb0089a71e123da6d7339905b02 Mon Sep 17 00:00:00 2001 From: meejah Date: Mon, 13 Feb 2017 15:17:48 -0700 Subject: [PATCH] add Twisted 17.1.0 to tox --- tox.ini | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tox.ini b/tox.ini index 3e5b00ec..8cb63cb4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,11 @@ [tox] envlist = flake8 - py27-{tw121,tw132,tw154,tw165,twtrunk,asyncio} - pypy-{tw121,tw132,tw154,tw165,twtrunk,asyncio} - py33-{tw154,tw165,twtrunk,asyncio} - py34-{tw154,tw165,twtrunk,asyncio} - py35-{tw154,tw165,twtrunk,asyncio} + py27-{tw121,tw132,tw154,tw165,tw171,twtrunk,asyncio} + pypy-{tw121,tw132,tw154,tw165,tw171,twtrunk,asyncio} + py33-{tw154,tw165,tw171,twtrunk,asyncio} + py34-{tw154,tw165,tw171,twtrunk,asyncio} + py35-{tw154,tw165,tw171,twtrunk,asyncio} [flake8] @@ -31,6 +31,7 @@ deps = tw132: twisted==13.2.0 tw154: twisted==15.4.0 tw165: twisted==16.5.0 + tw171: twisted==17.1.0 twtrunk: https://github.com/twisted/twisted/archive/trunk.zip {tw121,tw132,tw154,tw165,twtrunk}: pytest-twisted @@ -48,7 +49,7 @@ commands = coverage --version asyncio: coverage run --source {envsitepackagesdir}/autobahn/ {envbindir}/py.test {envsitepackagesdir}/autobahn/ tw121,tw132,tw154: coverage run {envbindir}/trial autobahn - tw165,twtrunk: coverage run -m twisted.trial autobahn + tw165,tw171,twtrunk: coverage run -m twisted.trial autobahn coverage report whitelist_externals = sh @@ -57,7 +58,7 @@ setenv = PYUBJSON_NO_EXTENSION = 1 SODIUM_INSTALL = bundled asyncio: USE_ASYNCIO = 1 - tw121,tw132,tw154,tw165,twtrunk: USE_TWISTED = 1 + tw121,tw132,tw154,tw165,tw171,twtrunk: USE_TWISTED = 1 [testenv:flake8]