github.com/munnerz/test-infra@v0.0.0-20190108210205-ce3d181dc989/.bazelrc (about) 1 # populate env used for stamping builds etc 2 build --workspace_status_command=./hack/print-workspace-status.sh 3 run --workspace_status_command=./hack/print-workspace-status.sh 4 5 # enable data race detection 6 test --features=race --test_output=errors 7 8 # only build tests when testing 9 test --build_tests_only 10 11 # you can run only lint tests with: 12 # bazel test //... --config=lint 13 test:lint --test_tag_filters=lint 14 15 # you can run non-lint tests with: 16 # bazel test //... --config=unit 17 test:unit --test_tag_filters=-lint