From 3d53deff75d1d9f061ec9bb48977f2bdc0b65648 Mon Sep 17 00:00:00 2001 From: Alyssa Date: Thu, 23 Jan 2025 23:16:08 +0000 Subject: [PATCH] Change seed to update test schedule --- tools/cloud-build/provision/list_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cloud-build/provision/list_tests.py b/tools/cloud-build/provision/list_tests.py index 6dcd0ef5b8..72b65a5279 100755 --- a/tools/cloud-build/provision/list_tests.py +++ b/tools/cloud-build/provision/list_tests.py @@ -39,7 +39,7 @@ TO_SKIP = frozenset(["ofe-deployment"]) # Seed for deterministic order of tests, change to other value to shuffle tests -ORDER_SEED = b"Hakuna Matata" +ORDER_SEED = b"What a wonderful phrase" def list_builds() -> list[str]: builds = [b[:-5] for b in glob.glob("*.yaml", root_dir="../daily-tests/builds/")]