Remove python2.6 from tox tests

This commit is contained in:
Kenneth Giusti 2016-05-16 14:10:33 -04:00
parent 407287432b
commit 7cafb747eb
3 changed files with 4 additions and 3 deletions

View File

@ -33,7 +33,7 @@ try:
except ImportError: except ImportError:
# this version of proton will download and install the proton shared # this version of proton will download and install the proton shared
# library as well: # library as well:
_dependencies = ['python-qpid-proton>=0.9,<0.11'] _dependencies = ['python-qpid-proton>=0.9,<0.13']
setup(name="pyngus", setup(name="pyngus",

View File

@ -900,5 +900,6 @@ mech_list: EXTERNAL DIGEST-MD5 SCRAM-SHA-1 CRAM-MD5 PLAIN ANONYMOUS
assert c2_events.sasl_done_outcome == 1, c2_events.sasl_done_outcome assert c2_events.sasl_done_outcome == 1, c2_events.sasl_done_outcome
assert c2_events.failed_ct == 1, c2_events.failed_ct assert c2_events.failed_ct == 1, c2_events.failed_ct
#
# NOTE WELL: Update TEST_COUNT as new test methods are added!! # NOTE WELL: Update TEST_COUNT as new test methods are added!!
#

View File

@ -1,7 +1,7 @@
[tox] [tox]
# Proton does not support Python3 yet: see Jira PROTON-490 # Proton does not support Python3 yet: see Jira PROTON-490
#envlist = py27,py33,pep8 #envlist = py27,py33,pep8
envlist = py26,py27,pep8,py34 envlist = py27,pep8,py34
[testenv] [testenv]
usedevelop=True usedevelop=True