| # Specifies desired output mode for running tests. |
| # Valid values are |
| # 'summary' to output only test status summary |
| # 'errors' to also print test logs for failed tests |
| # 'all' to print logs for all tests |
| # 'streamed' to output logs for all tests in real time |
| # (this will force tests to be executed locally one at a time regardless of --test_strategy value). |
| common --test_output=errors |
| |
| # Turn on --incompatible_strict_action_env which was on by default |
| # in Bazel 0.21.0 but turned off again in 0.22.0. Follow |
| # https://github.com/bazelbuild/bazel/issues/7026 for more details. |
| # This flag is needed to so that the bazel cache is not invalidated |
| # when running bazel via `yarn bazel`. |
| # See https://github.com/angular/angular/issues/27514. |
| common --incompatible_strict_action_env |
| |
| # Turn off legacy external runfiles |
| # This prevents accidentally depending on this feature, which Bazel will remove. |
| common --nolegacy_external_runfiles |