From 7cfeedf68ee9a947c65cf72612a4f2f2158cce66 Mon Sep 17 00:00:00 2001 From: Dmitry Mescheryakov Date: Tue, 24 May 2016 16:01:04 +0300 Subject: [PATCH] Specify one more group for detach-rabbitmq tests for the plugin CI We want to test detach-rabbitmq on Plugin CI. To do that, we need to outline a set of tests we want to run on each commit. That is done with the new 'detach-rabbitmq-ci-group' group, covering a couple of already existing test cases. The group is intended for Plugin CI use only. Change-Id: Ia75a39f1a3e889f4635909fdb52d993fcb11974d --- .../tests/tests_separate_services/test_separate_rabbitmq.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fuelweb_test/tests/tests_separate_services/test_separate_rabbitmq.py b/fuelweb_test/tests/tests_separate_services/test_separate_rabbitmq.py index 8acb1edb1..5d5dcf34f 100644 --- a/fuelweb_test/tests/tests_separate_services/test_separate_rabbitmq.py +++ b/fuelweb_test/tests/tests_separate_services/test_separate_rabbitmq.py @@ -27,7 +27,8 @@ from fuelweb_test.tests.base_test_case import SetupEnvironment from fuelweb_test.tests.base_test_case import TestBasic -@test(groups=["thread_separate_services", "thread_2_separate_services"]) +@test(groups=["thread_separate_services", "thread_2_separate_services", + "detach-rabbitmq-ci-group"]) class SeparateRabbit(TestBasic): """SeparateRabbit""" # TODO documentation @@ -120,7 +121,8 @@ class SeparateRabbit(TestBasic): self.env.make_snapshot("separate_rabbit_service", is_make=True) -@test(groups=["thread_separate_services", "thread_2_separate_services"]) +@test(groups=["thread_separate_services", "thread_2_separate_services", + "detach-rabbitmq-ci-group"]) class SeparateRabbitFailover(TestBasic): """SeparateRabbitFailover""" # TODO documentation