Skip to content

Commit

Permalink
HBASE-15917 Addendum. Fix bug in report-flakies.py where hanging test…
Browse files Browse the repository at this point in the history
…s are not being added to flaky list. (Apekshit)

ADDENDUM #2!

Change-Id: I9c55932d0f9e65b72ec8d3ae714144536b2bfe0a

Signed-off-by: stack <stack@apache.org>
  • Loading branch information
apeksharma authored and saintstack committed May 31, 2016
1 parent c80e232 commit eb64cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-support/report-flakies.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def expand_multi_configuration_projects(urls_list):
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:
Expand Down

0 comments on commit eb64cd9

Please sign in to comment.