No public description

PiperOrigin-RevId: 572949286
diff --git a/.github/workflows/bazel_test_centipede.yml b/.github/workflows/bazel_test_centipede.yml
index ba4c734..ca8d35e 100644
--- a/.github/workflows/bazel_test_centipede.yml
+++ b/.github/workflows/bazel_test_centipede.yml
@@ -52,7 +52,7 @@
       - name: Run e2e tests
         if: matrix.config == 'default'
         run: |
-          bazel test --test_output=errors centipede/testing:instrumentation_test centipede/testing:runner_test
+          bazel test --test_output=errors centipede/testing:all
       - name: Run puzzles
         if: matrix.config == 'default'
         run: |
diff --git a/centipede/run_test_workflow.sh b/centipede/run_test_workflow.sh
index 453f589..f13bff2 100755
--- a/centipede/run_test_workflow.sh
+++ b/centipede/run_test_workflow.sh
@@ -64,7 +64,8 @@
 #  - 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[@]}" centipede/testing:instrumentation_test centipede/testing:runner_test &&
+bazel test "${BAZEL_ARGS[@]}" centipede/testing:all &&
 bazel test "${BAZEL_ARGS[@]}" centipede/puzzles:all
 bazel test "${BAZEL_ARGS[@]}" --linkopt=-fsanitize=address --copt=-fsanitize=address centipede/puzzles:all
 bazel test "${BAZEL_ARGS[@]}" --no//centipede:use_riegeli --local_test_jobs=1 --test_output=streamed centipede:all &&