HBASE-15917 Addendum. Fix bug in report-flakies.py where hanging tests are not being added to flaky list. (Apekshit)
ADDENDUM #2! Change-Id: I9c55932d0f9e65b72ec8d3ae714144536b2bfe0a Signed-off-by: stack <stack@apache.org>
This commit is contained in:
parent
c80e232642
commit
eb64cd9dd1
|
@ -161,7 +161,7 @@ for url_max_build in expanded_urls:
|
||||||
print ""
|
print ""
|
||||||
|
|
||||||
|
|
||||||
all_bad_tests = all_timeout_tests.union(all_failed_tests)
|
all_bad_tests = all_hanging_tests.union(all_failed_tests)
|
||||||
if args.mvn:
|
if args.mvn:
|
||||||
includes = ",".join(all_bad_tests)
|
includes = ",".join(all_bad_tests)
|
||||||
with open("./includes", "w") as inc_file:
|
with open("./includes", "w") as inc_file:
|
||||||
|
|
Loading…
Reference in New Issue