20 lines
767 B
Plaintext
20 lines
767 B
Plaintext
############################################################
|
|
# Use `bazel test --config=debug` to enable these settings #
|
|
############################################################
|
|
|
|
# Stream stdout/stderr output from each test in real-time.
|
|
# Docs: https://bazel.build/docs/user-manual#test-output
|
|
test:debug --test_output=streamed
|
|
|
|
# Run one test at a time.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--test_strategy
|
|
test:debug --test_strategy=exclusive
|
|
|
|
# Prevent long running tests from timing out.
|
|
# Docs: https://bazel.build/docs/user-manual#test-timeout
|
|
test:debug --test_timeout=9999
|
|
|
|
# Always run tests even if they have cached results.
|
|
# Docs: https://bazel.build/docs/user-manual#cache-test-results
|
|
test:debug --nocache_test_results
|