We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b2d89 commit a1d0d99Copy full SHA for a1d0d99
tests/clickhouse-test
@@ -3087,7 +3087,7 @@ def do_run_tests(
3087
# because the distribution and the amount
3088
# of failures will be nearly the same for all tests from the group.
3089
# TODO: add shuffle for sequential tests
3090
- if jobs > 1:
+ if jobs > 1 and args.order == "random":
3091
random.shuffle(test_suite.parallel_tests)
3092
3093
batch_size = len(test_suite.parallel_tests) // jobs
@@ -3723,7 +3723,7 @@ def parse_args():
3723
"-t",
3724
"--timeout",
3725
type=int,
3726
- default=600,
+ default=800,
3727
help="Timeout for each test case in seconds",
3728
)
3729
parser.add_argument(
0 commit comments