Skip to content

Commit a1d0d99

Browse files
committed
Don't randomize statelss by default, trying to improve stability
also slightly increased default stateless test case timeout
1 parent 67b2d89 commit a1d0d99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/clickhouse-test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3087,7 +3087,7 @@ def do_run_tests(
30873087
# because the distribution and the amount
30883088
# of failures will be nearly the same for all tests from the group.
30893089
# TODO: add shuffle for sequential tests
3090-
if jobs > 1:
3090+
if jobs > 1 and args.order == "random":
30913091
random.shuffle(test_suite.parallel_tests)
30923092

30933093
batch_size = len(test_suite.parallel_tests) // jobs
@@ -3723,7 +3723,7 @@ def parse_args():
37233723
"-t",
37243724
"--timeout",
37253725
type=int,
3726-
default=600,
3726+
default=800,
37273727
help="Timeout for each test case in seconds",
37283728
)
37293729
parser.add_argument(

0 commit comments

Comments
 (0)