From f64dfb1417b8977880e334b117f6c289e5ca0590 Mon Sep 17 00:00:00 2001 From: Ramy Asselin Date: Fri, 13 Nov 2015 18:17:23 -0800 Subject: [PATCH] Disable failing tests test_gerrit_comment.py These tests don't work anymore. Skip them until they are fixed. They are not normally run, but are run by default in IDEs that run all unit tests. Related-Bug: #1517730 Change-Id: I7ad86158ba29ae7210b31c0f45df62277112b3f4 --- elastic_recheck/tests/functional/test_gerrit_comment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elastic_recheck/tests/functional/test_gerrit_comment.py b/elastic_recheck/tests/functional/test_gerrit_comment.py index bb7edd99..a8aedd40 100644 --- a/elastic_recheck/tests/functional/test_gerrit_comment.py +++ b/elastic_recheck/tests/functional/test_gerrit_comment.py @@ -32,6 +32,7 @@ class TestGerritComment(testtools.TestCase): port = 29418 self.gerrit = gerritlib.gerrit.Gerrit(host, self.user, port) + @testtools.skip("Skip until Bug 1517730") def test_bug_found(self): bug_numbers = set(['1223158']) project = 'gtest-org/test' @@ -48,6 +49,7 @@ class TestGerritComment(testtools.TestCase): "https://bugs.launchpad.net/bugs/1223158", comment.get('message')) + @testtools.skip("Skip until Bug 1517730") def test_bugs_found(self): bug_numbers = set(['1223158', '424242']) project = 'gtest-org/test'