Skip to content

Commit c575855

Browse files
authored
add mage target for running tests with race detector (#1268)
1 parent e36e738 commit c575855

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build/common.go

+5
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,11 @@ func Test() error {
393393
return sh.RunV("go", "test", "./pkg/...")
394394
}
395395

396+
// TestRace runs backend tests with the data race detector enabled.
397+
func TestRace() error {
398+
return sh.RunV("go", "test", "-race", "./pkg/...")
399+
}
400+
396401
// Coverage runs backend tests and makes a coverage report.
397402
func Coverage() error {
398403
// Create a coverage folder if it does not already exist

0 commit comments

Comments
 (0)