mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6c6e2ca2f4
Options adapted from https://docs.aspect.build/guides/bazelrc bazel: adopt best practices for bazelrc Options adapted from https://docs.aspect.build/guides/bazelrc
23 lines
863 B
Plaintext
23 lines
863 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
|
|
|
|
# enable debug symbols and disable stripping
|
|
common:debug --compilation_mode=dbg --strip=never
|