From 24ec6e214bb32a1bd79e1c98cecf737ed1fc5d10 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 28 May 2015 14:40:25 +0200 Subject: [PATCH] py34: don't run any tests except unit tests py34 job was intended for unit tests only. It's important to distinguish between different types of tests, because they all have different requirements to execution environment. E.g. functional tests are not expected to run in a restricted env designed for unit tests, and that's even more valid for fullstack tests. Otherwise, the job may fail or apply irrecoverable changes to test runner system, breaking the system. If we ever want to support py3 for other types of tests, we should add separate jobs just for that. Note that the neutron-python3 blueprint was not intended to introduce changes to support anything but unit test execution with the new Python version, so strictly speaking, any effort to make other test types work is out of scope. Change-Id: Ia96f03f05269c1938b51ee26f4b4075b69967bb8 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8a1c5d76c..1c8761c70 100644 --- a/tox.ini +++ b/tox.ini @@ -98,7 +98,6 @@ commands = sphinx-build -W -b html doc/source doc/build [testenv:py34] commands = python -m testtools.run \ - neutron.tests.fullstack.test_l3_agent \ neutron.tests.unit.common.test_rpc [flake8] -- 2.45.2