Default to randomized test case order

This commit is contained in:
Martin Hořeňovský
2025-04-29 17:00:09 +02:00
parent b9c018b38a
commit a483b6d7d3
2 changed files with 7 additions and 2 deletions

View File

@@ -46,10 +46,15 @@ env["TEST_SHARD_INDEX"] = "0"
env["TEST_TOTAL_SHARDS"] = "2"
env["TEST_SHARD_STATUS_FILE"] = info_file_path
cmd = [
bin_path,
# We rely on the test order being deterministic
'--order', 'decl'
]
try:
ret = subprocess.run(
bin_path,
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
check=True,