From e3853ce537b1d4eb0cbe13d0bf57e67575e7db61 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 19 Sep 2013 16:28:45 -0700 Subject: [PATCH] Improve skip for unit test or pep8 --- elasticRecheck.py | 1 + 1 file changed, 1 insertion(+) diff --git a/elasticRecheck.py b/elasticRecheck.py index 9053136f..22fc3162 100755 --- a/elasticRecheck.py +++ b/elasticRecheck.py @@ -54,6 +54,7 @@ class Stream(object): for line in event['comment'].split('\n'): if "FAILURE" in line and ("python2" in line or "pep8" in line): # Unit Test Failure + found = False break if "FAILURE" in line and "tempest-devstack" in line: url = [x for x in line.split() if "http" in x][0]