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:
Apekshit 2016-05-31 02:29:40 -07:00 committed by stack
parent c80e232642
commit eb64cd9dd1
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ for url_max_build in expanded_urls:
print ""
all_bad_tests = all_timeout_tests.union(all_failed_tests)
all_bad_tests = all_hanging_tests.union(all_failed_tests)
if args.mvn:
includes = ",".join(all_bad_tests)
with open("./includes", "w") as inc_file: