From 6989af8d2ce1ba5970b55e809b0afa72bd66b56f Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Sun, 18 Dec 2016 00:47:32 +0000 Subject: [PATCH] Fixes test_filter_by_description failing on glare gate job. Confirmed bug #1616856 states that filtering apps by description currently doesn't work with glare. So, the test is skipped if glare is being used. Change-Id: I241a16b3c28cfc7955f95035b1c31180451e8903 Closes-Bug: #1650831 Related-Bug: #1616856 --- muranodashboard/tests/functional/sanity_check.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/muranodashboard/tests/functional/sanity_check.py b/muranodashboard/tests/functional/sanity_check.py index ec7a33030..498863925 100644 --- a/muranodashboard/tests/functional/sanity_check.py +++ b/muranodashboard/tests/functional/sanity_check.py @@ -774,6 +774,9 @@ class TestSuiteApplications(base.ApplicationTestCase): self.check_element_not_on_page(by.By.XPATH, c.App.format(name)) + @unittest.skipIf(utils.glare_enabled(), + "Filtering apps by description doesn't work with GLARE; " + "this test should be fixed with bug #1616856.") def test_filter_by_description(self): """Test filtering by description.