From a5f029d4ffaaf6d2b060b1a3b8d22378c94e8e93 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Thu, 4 Jul 2013 20:47:25 -0700 Subject: [PATCH] Remove duplication of test exclusions Change-Id: I0da6f034db216d57a8c57325ce72545816c4f188 --- anvil/components/glance_client.py | 7 ------- conf/components/glance-client.yaml | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/anvil/components/glance_client.py b/anvil/components/glance_client.py index 5ce896c0..8a38728f 100644 --- a/anvil/components/glance_client.py +++ b/anvil/components/glance_client.py @@ -20,10 +20,3 @@ from anvil.components import base_testing as btesting class GlanceClientTester(btesting.PythonTestingComponent): def _use_run_tests(self): return False - - def _get_test_exclusions(self): - return [ - # These seem to require swift, not always installed... - 'test_ssl_cert_mismatch', - 'test_ssl_cert_subject_alt_name', - ] diff --git a/conf/components/glance-client.yaml b/conf/components/glance-client.yaml index b456fff7..7b7a2d02 100644 --- a/conf/components/glance-client.yaml +++ b/conf/components/glance-client.yaml @@ -4,6 +4,7 @@ # Where we download this from... get_from: "git://github.com/openstack/python-glanceclient.git?branch=master" +# These seem to require swift, not always installed... exclude_tests: - "test_ssl_cert_mismatch" - "test_ssl_cert_subject_alt_name"