diff options
author | Eric Brown <browne@vmware.com> | 2017-01-09 10:08:07 -0800 |
---|---|---|
committer | Eric Brown <browne@vmware.com> | 2017-01-13 18:13:32 +0000 |
commit | ed2c1e37672c5f90a8f820c49d014525298dc1c5 (patch) | |
tree | 97319115e9d54a9a9b559cafb85d164cc36ccc9f /tox.ini | |
parent | e90792de85c378196fd37f585aac8f262addcb06 (diff) | |
download | oslo-messaging-ed2c1e37672c5f90a8f820c49d014525298dc1c5.tar.gz |
Remove references to Python 3.4
Now that there exists only a gate job for Python 3.5 and not 3.4,
we should remove those references to the 3.4 that is untested.
Change-Id: I2a00ead626d9eced96487ee82b5d7857126d8355
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 22 |
1 files changed, 1 insertions, 21 deletions
@@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py35,py34,py27,pep8,bandit +envlist = py35,py27,pep8,bandit [testenv] setenv = @@ -34,13 +34,6 @@ setenv = TRANSPORT_DRIVER=rabbit commands = pifpaf run rabbitmq -- python setup.py testr --slowest --testr-args='{posargs:oslo_messaging.tests.functional}' -[testenv:py34-func-rabbit] -setenv = - {[testenv]setenv} - TRANSPORT_DRIVER=rabbit -basepython = python3.4 -commands = pifpaf run rabbitmq -- python setup.py testr --slowest --testr-args='{posargs:oslo_messaging.tests.functional}' - [testenv:py35-func-rabbit] setenv = {[testenv]setenv} @@ -70,16 +63,6 @@ setenv = WORKDIR={toxworkdir} commands = {toxinidir}/setup-test-env-amqp1.sh python setup.py testr --slowest --testr-args='oslo_messaging.tests.functional' -[testenv:py34-func-amqp1] -basepython = python3.4 -setenv = - {[testenv]setenv} - TRANSPORT_URL=amqp://stackqpid:secretqpid@127.0.0.1:65123// - AMQP1_BACKEND=qpidd - ENVNAME={envname} - WORKDIR={toxworkdir} -commands = {toxinidir}/setup-test-env-amqp1.sh python setup.py testr --slowest --testr-args='oslo_messaging.tests.functional' - [testenv:py35-func-amqp1] basepython = python3.5 setenv = @@ -93,9 +76,6 @@ commands = {toxinidir}/setup-test-env-amqp1.sh python setup.py testr --slowest - [testenv:py27-func-zmq] commands = {toxinidir}/setup-test-env-zmq.sh python setup.py testr --slowest --testr-args='{posargs:oslo_messaging.tests.functional}' -[testenv:py34-func-zmq] -commands = {toxinidir}/setup-test-env-zmq.sh python setup.py testr --slowest --testr-args='{posargs:oslo_messaging.tests.functional}' - [testenv:py35-func-zmq] commands = {toxinidir}/setup-test-env-zmq.sh python setup.py testr --slowest --testr-args='{posargs:oslo_messaging.tests.functional}' |