From 55ecc72a6edc8d01ecb1c2ce81579fa31c715f3e Mon Sep 17 00:00:00 2001 From: Arthur Zucker Date: Wed, 1 May 2024 13:32:21 +0200 Subject: [PATCH] sort by classname is what make most sense --- .circleci/create_circleci_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index ad975680469399..deea741b326a48 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -165,7 +165,7 @@ def to_dict(self): command = f'echo {tests} | tr " " "\\n" >> tests.txt' steps.append({"run": {"name": "Get tests", "command": command}}) - command = 'TESTS=$(circleci tests split tests.txt --split-by=timings --timings-type=name) && echo $TESTS > splitted_tests.txt' + command = 'TESTS=$(circleci tests split tests.txt --split-by=timings --timings-type=classname) && echo $TESTS > splitted_tests.txt' steps.append({"run": {"name": "Split tests", "command": command}}) steps.append({"store_artifacts": {"path": "tests.txt"}})