File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ example_simple: source_path dependencies examples/simple/main.go
82
82
$(GO ) build -o example_simple examples/simple/main.go
83
83
84
84
test : build
85
- $(GO ) test ./...
85
+ $(GO ) test -short ./...
86
86
87
87
benchmark : build
88
88
$(GO ) test -benchmem -test.bench=" $( BENCHMARK_FILTER) " ./...
Original file line number Diff line number Diff line change @@ -120,6 +120,10 @@ func BenchmarkSummaryWrite8(b *testing.B) {
120
120
}
121
121
122
122
func TestSummaryConcurrency (t * testing.T ) {
123
+ if testing .Short () {
124
+ t .Skip ("Skipping test in short mode." )
125
+ }
126
+
123
127
rand .Seed (42 )
124
128
125
129
it := func (n uint32 ) bool {
@@ -195,6 +199,10 @@ func TestSummaryConcurrency(t *testing.T) {
195
199
}
196
200
197
201
func TestSummaryVecConcurrency (t * testing.T ) {
202
+ if testing .Short () {
203
+ t .Skip ("Skipping test in short mode." )
204
+ }
205
+
198
206
rand .Seed (42 )
199
207
200
208
objectives := make ([]float64 , 0 , len (DefObjectives ))
You can’t perform that action at this time.
0 commit comments