We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9614612 + eda43fe commit 3f6d97eCopy full SHA for 3f6d97e
Makefile
@@ -16,7 +16,15 @@ EXTRAGOARGS:=
16
17
all: build
18
19
-generate build clean test:
+test: all-tests
20
+
21
+unit-tests:
22
+ go test -short $(EXTRAGOARGS)
23
24
+all-tests:
25
+ go test $(EXTRAGOARGS)
26
27
+generate build clean:
28
go $@ $(EXTRAGOARGS)
29
-.PHONY: all generate clean build test
30
+.PHONY: all generate clean build test unit-tests all-tests
machine_test.go
@@ -76,6 +76,10 @@ func TestNewMachine(t *testing.T) {
76
}
77
78
func TestMicroVMExecution(t *testing.T) {
79
+ if testing.Short() {
80
+ t.Skip()
81
+ }
82
83
var nCpus int64 = 2
84
cpuTemplate := models.CPUTemplate(models.CPUTemplateT2)
85
var memSz int64 = 256
0 commit comments