mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* Reorganize bazelrc and intro new flags * move cross compilation toolchain into its own bazelrc * Restore build_tests_only
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
|