Skip to content

Commit

Permalink
Merge pull request #3287 from csordasmarton/fix_performance_test_loca…
Browse files Browse the repository at this point in the history
…l_compare

[script] Fix performance local compare test message
  • Loading branch information
bruntib authored Apr 27, 2021
2 parents ba0abb5 + 946f716 commit a03877c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test/run_server_performance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def local_compare(report_dir, run_name, server_url):

print("Local compare of {} {}".format(
run_name,
"is done" if compare_process.returncode == 0 else "failed"))
"is done" if compare_process.returncode in [0, 2] else "failed"))

return compare_process.returncode

Expand Down

0 comments on commit a03877c

Please sign in to comment.