Merge pull request #10873 from ClickHouse/allow_expected_number_of_failures_in_performance_test

Allow expected number of slower queries in performance test
This commit is contained in:
alexey-milovidov 2020-05-13 06:58:04 +03:00 committed by GitHub
commit 49c211a791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -340,7 +340,8 @@ if args.report == 'main':
message_array.append(str(faster_queries) + ' faster')
if slower_queries:
status = 'failure'
if slower_queries > 3:
status = 'failure'
message_array.append(str(slower_queries) + ' slower')
if unstable_queries: