summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-08-26 10:05:25 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-08-26 10:05:25 -0400
commit1e8080e11e8d1fec6a1d4d256483f38f5d0ba4a6 (patch)
treefc4ec6f0af76083160bc40bfccc55ddaa51ab76d
parent902acdac22b1c117ef7a26add4d4b5b34cd64bf3 (diff)
tempest-pull: update filter to add more ignored tests
-rw-r--r--tempest-pull/app/bundle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest-pull/app/bundle.py b/tempest-pull/app/bundle.py
index 7072ef4..0f86f56 100644
--- a/tempest-pull/app/bundle.py
+++ b/tempest-pull/app/bundle.py
@@ -224,7 +224,7 @@ class Bundle(object):
disabled_services_list_copy.append("volume service")
# build up the pattern to check for tests that are skipped due to a service not being enabled
- reasons_string = "is not available|support is required|does not support|does not check|not available"
+ reasons_string = "not available|support is required|does not support|does not check|not available|feature is disabled|feature disabled|is not supported|is not enabled"
disabled_service_check_pattern = ".*(" + "|".join(disabled_services_list_copy) + ") (" + reasons_string + ").*"
neutron_check_pattern = None