No public description

PiperOrigin-RevId: 583073548
diff --git a/centipede/puzzles/puzzle.bzl b/centipede/puzzles/puzzle.bzl
index 3be0242..0b5ead8 100644
--- a/centipede/puzzles/puzzle.bzl
+++ b/centipede/puzzles/puzzle.bzl
@@ -31,7 +31,7 @@
     # trustworthy. The seeds are fixed so that we have some degree of
     # repeatability. Each sh_test performs a single run with a single seed, so
     # that the log is minimal.
-    for seed in ["1", "2"]:
+    for seed in ["1", "2", "3", "4", "5", "6", "7", "8", "9"]:
         native.sh_test(
             name = "run_" + seed + "_" + name,
             srcs = ["run_puzzle.sh"],
diff --git a/centipede/run_test_workflow.sh b/centipede/run_test_workflow.sh
index e15016f..2354fc8 100755
--- a/centipede/run_test_workflow.sh
+++ b/centipede/run_test_workflow.sh
@@ -62,9 +62,9 @@
 #  - When all tests under `testing` pass, remove separate tests for each
 #    subdirectory and replace `centipede:all` with `centipede/...`.
 #  - Use a single `bazel test "${BAZEL_ARGS[@]}" ...`.
-bazel test "${BAZEL_ARGS[@]}" --local_test_jobs=1 --test_output=streamed \
-  centipede:all &&
-bazel test "${BAZEL_ARGS[@]}" centipede/testing:instrumentation_test centipede/testing:runner_test &&
+# bazel test "${BAZEL_ARGS[@]}" --local_test_jobs=1 --test_output=streamed \
+#   centipede:all &&
+# bazel test "${BAZEL_ARGS[@]}" centipede/testing:instrumentation_test centipede/testing:runner_test &&
 bazel test "${BAZEL_ARGS[@]}" centipede/puzzles:all
 bazel test "${BAZEL_ARGS[@]}" --linkopt=-fsanitize=address --copt=-fsanitize=address centipede/puzzles:all