diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2015-02-09 22:05:51 -0500 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-02-09 22:05:51 -0500 |
| commit | 3946bf0e0186c8c2897f432029bad7873b6d03a0 (patch) | |
| tree | 6db078b83e069fa825f5a1a257a3743a109ab443 | |
| parent | 6525c065a4e5ee0ff9ea3137a9ee57d58beb5cd5 (diff) | |
| download | python-openstackclient-3946bf0e0186c8c2897f432029bad7873b6d03a0.tar.gz | |
Skip functional tests until they are fixed
Newest python-keystoneclient broke some of our tests, this patch
is just to get the gate less broken.
Change-Id: I8961c63d094e9effde73f6d4088d8626a46e1f3d
Related-Bug: #1420080
| -rw-r--r-- | functional/tests/test_examples.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/functional/tests/test_examples.py b/functional/tests/test_examples.py index 6e0e5867..95705c7d 100644 --- a/functional/tests/test_examples.py +++ b/functional/tests/test_examples.py @@ -10,6 +10,8 @@ # License for the specific language governing permissions and limitations # under the License. +import testtools + from functional.common import test @@ -21,8 +23,10 @@ class ExampleTests(test.TestCase): # code, then execute will raise an error by default. test.execute('python', test.EXAMPLE_DIR + '/common.py --debug') + @testtools.skip('skipping until bug 1420080 is resolved') def test_object_api(self): test.execute('python', test.EXAMPLE_DIR + '/object_api.py --debug') + @testtools.skip('skipping until bug 1420080 is resolved') def test_osc_lib(self): test.execute('python', test.EXAMPLE_DIR + '/osc-lib.py --debug') |
