@@ -63,7 +63,7 @@ common --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
63
63
# Add `-test.v` to all Go tests so that each test func is reported as a separate test case
64
64
# in the XML output. This allows our webUI to display the run time of each test case
65
65
# separately and let us know which tests is slow.
66
- test --test_env=GO_TEST_WRAP_TESTV=1
66
+ common --test_env=GO_TEST_WRAP_TESTV=1
67
67
68
68
# In rules_go v0.50.0, nogo static analysis was moved from GoCompilePkg to a couple of
69
69
# actions: RunNogo and ValidateNogo. Among these, ValidateNogo is a validation action*.
@@ -79,34 +79,34 @@ common --experimental_use_validation_aspect=true
79
79
# Don't show cached test results in the test summary
80
80
# We have many tests that can fill up the console with cached results.
81
81
# If you prefer to see cached results, set this to 'short' in user.bazelrc file.
82
- test --test_summary=terse
82
+ common --test_summary=terse
83
83
84
84
common:race --@io_bazel_rules_go//go/config:race
85
85
86
86
common:performance --compilation_mode=opt
87
87
88
88
# Configurations used to debug flaky tests
89
89
common:quarantine --config=remote-minimal
90
- test :quarantine --config=race
91
- test :quarantine --test_env=RUN_QUARANTINED_TESTS=true
90
+ common :quarantine --config=race
91
+ common :quarantine --test_env=RUN_QUARANTINED_TESTS=true
92
92
93
93
# Configuration used to deflake tests
94
94
common:deflake --config=remote-minimal
95
- test :deflake --runs_per_test=100
96
- test :deflake --test_output=errors
97
- test :deflake --test_runner_fail_fast
98
- test :deflake --notest_keep_going
99
- test :deflake --config=quarantine
95
+ common :deflake --runs_per_test=100
96
+ common :deflake --test_output=errors
97
+ common :deflake --test_runner_fail_fast
98
+ common :deflake --notest_keep_going
99
+ common :deflake --config=quarantine
100
100
101
101
# Run Webdriver tests with --config=webdriver-debug to debug webdriver tests locally.
102
102
# See server/testutil/webtester/webtester.go for more details.
103
- test :webdriver-debug --test_arg=-webdriver_headless=false
104
- test :webdriver-debug --test_arg=-webdriver_end_of_test_delay=3s
103
+ common :webdriver-debug --test_arg=-webdriver_headless=false
104
+ common :webdriver-debug --test_arg=-webdriver_end_of_test_delay=3s
105
105
# Forward X server display for local webdriver tests.
106
- test :webdriver-debug --test_env=DISPLAY
106
+ common :webdriver-debug --test_env=DISPLAY
107
107
# When debugging, only run one webdriver test at a time (it's overwhelming
108
108
# otherwise).
109
- test :webdriver-debug --local_test_jobs=1
109
+ common :webdriver-debug --local_test_jobs=1
110
110
111
111
112
112
###################################
0 commit comments