From: Thomas Goirand Date: Sat, 6 Feb 2016 08:30:41 +0000 (+0000) Subject: * Blacklisted some tests: X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=3d5c3669bfad272ba7d0b3a509d3f93a05d1caab;p=openstack-build%2Fneutron-lbaas-build.git * Blacklisted some tests: test_agent_scheduler.LBaaSAgentSchedulerTestCase.test_loadbalancer_unscheduling_on_loadbalancer_deletion test_agent_scheduler.LBaaSAgentSchedulerTestCase.test_loadbalancer_scheduling_on_loadbalancer_creation db.loadbalancer.test_db_loadbalancerv2.LoadBalancerDelegateVIPCreation.test_create_loadbalancer db.loadbalancer.test_db_loadbalancerv2.LbaasLoadBalancerTests.test_create_loadbalancer_with_vip_address db.loadbalancer.test_db_loadbalancerv2.LbaasLoadBalancerTests.test_create_loadbalancer Rewritten-From: c706c8eadf9b79a5a87b14d97729e3fc8f1ecb8e --- diff --git a/trusty/debian/changelog b/trusty/debian/changelog index 2ad6a00..812c904 100644 --- a/trusty/debian/changelog +++ b/trusty/debian/changelog @@ -4,6 +4,12 @@ neutron-lbaas (1:7.0.2-1) unstable; urgency=medium * Uploading to unstable. * Added git as build-depends. * Fixed debian/copyright order, holders and years. + * Blacklisted some tests: + test_agent_scheduler.LBaaSAgentSchedulerTestCase.test_loadbalancer_unscheduling_on_loadbalancer_deletion + test_agent_scheduler.LBaaSAgentSchedulerTestCase.test_loadbalancer_scheduling_on_loadbalancer_creation + db.loadbalancer.test_db_loadbalancerv2.LoadBalancerDelegateVIPCreation.test_create_loadbalancer + db.loadbalancer.test_db_loadbalancerv2.LbaasLoadBalancerTests.test_create_loadbalancer_with_vip_address + db.loadbalancer.test_db_loadbalancerv2.LbaasLoadBalancerTests.test_create_loadbalancer -- Thomas Goirand Thu, 22 Oct 2015 15:48:15 +0200 diff --git a/trusty/debian/rules b/trusty/debian/rules index 9e6e344..6e93c2c 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -23,7 +23,7 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) rm -rf .testrepository ; \ testr-python$$PYMAJOR init ; \ TEMP_REZ=`mktemp -t` ; \ - PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit 'neutron_lbaas\.tests\.unit\.(?!(.*test_synchronous_driver.TestHaproxyNSDriver.test_cleanup_name.*|.*test_v2_plugin_driver.TestLBaaSDriver.test_wf_created_on_first_member_creation.*|.*test_v2_plugin_driver.TestLBaaSDriverRestClient.test_flip_servers.*))' | tee $$TEMP_REZ | subunit2pyunit ; \ + PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit 'neutron_lbaas\.tests\.unit\.(?!(.*test_synchronous_driver.TestHaproxyNSDriver.test_cleanup_name.*|.*test_v2_plugin_driver.TestLBaaSDriver.test_wf_created_on_first_member_creation.*|.*test_v2_plugin_driver.TestLBaaSDriverRestClient.test_flip_servers.*|.*test_agent_scheduler\.LBaaSAgentSchedulerTestCase\.test_loadbalancer_unscheduling_on_loadbalancer_deletion.*|.*test_agent_scheduler\.LBaaSAgentSchedulerTestCase\.test_loadbalancer_scheduling_on_loadbalancer_creation.*|.*db\.loadbalancer\.test_db_loadbalancerv2\.LoadBalancerDelegateVIPCreation\.test_create_loadbalancer.*|.*db\.loadbalancer\.test_db_loadbalancerv2\.LbaasLoadBalancerTests\.test_create_loadbalancer_with_vip_address.*|.*db\.loadbalancer\.test_db_loadbalancerv2\.LbaasLoadBalancerTests\.test_create_loadbalancer.*))' | tee $$TEMP_REZ | subunit2pyunit ; \ cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \ rm -f $$TEMP_REZ ; \ testr-python$$PYMAJOR slowest ; \