How can I ask Bazel to rerun a cached test?

There’s a flag for it –cache_test_results=(yes|no|auto) (-t) If this option is set to ‘auto’ (the default) then Bazel will only rerun a test if any of the following conditions applies: Bazel detects changes in the test or its dependencies the test is marked as external multiple test runs were requested with –runs_per_test the test failed. … Read more