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 acf2680 commit 6d9e24dCopy full SHA for 6d9e24d
tests/engine_tests/test_engine.py
@@ -40,7 +40,10 @@ def _extract_benchmark_contexts(
40
yield pyjson5.loads((test_cases_dir_path / file_path).read_text())["context"]
41
42
43
-TEST_CASES = list(_extract_test_cases(TEST_CASES_PATH))
+TEST_CASES = sorted(
44
+ _extract_test_cases(TEST_CASES_PATH),
45
+ key=lambda param: str(param.id),
46
+)
47
BENCHMARK_CONTEXTS = list(_extract_benchmark_contexts(TEST_CASES_PATH))
48
49
0 commit comments