From f19a323569549f8f4f1c287799b074ed03c2573f Mon Sep 17 00:00:00 2001 From: ghanshyam Date: Sun, 9 Dec 2018 13:47:48 +0000 Subject: [PATCH] Modify job timeout query to exclude tempest-all/slow build_name The tempest-all and tempest-slow jobs run slow tests, and since the bug is about slow tests which are *not* marked slow, we should exclude jobs that intentionally run slow tests. Change-Id: Idf2df040b568a5f19f7bf72ffda3818eb9aa7d12 Related-Bug: #1783405 --- queries/1783405.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/queries/1783405.yaml b/queries/1783405.yaml index c3bf668c..c8834dee 100644 --- a/queries/1783405.yaml +++ b/queries/1783405.yaml @@ -1,3 +1,5 @@ query: >- message:"RESULT_TIMED_OUT: [untrusted : git.openstack.org/openstack/tempest/playbooks/devstack-tempest.yaml@master]" AND - tags:"console" + tags:"console" AND NOT + (build_name:"tempest-all" OR + build_name:"tempest-slow")