File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -45,17 +45,21 @@ all build:
45
45
#
46
46
# Example:
47
47
# make build-tests
48
- build-tests : build-extended-test build-integration-test
48
+ build-tests : build-extended-test build-integration-test build-router-e2e-test
49
49
.PHONY : build-tests
50
50
51
51
build-extended-test :
52
52
hack/build-go.sh test/extended/extended.test
53
53
.PHONY : build-extended-test
54
54
55
- build-integration-test :
55
+ build-integration-test : build-router-e2e-test
56
56
hack/build-go.sh test/integration/integration.test
57
57
.PHONY : build-integration-test
58
58
59
+ build-router-e2e-test :
60
+ hack/build-go.sh test/end-to-end/end-to-end.test
61
+ .PHONY : build-router-e2e-test
62
+
59
63
# Run core verification and all self contained tests.
60
64
#
61
65
# Example:
@@ -187,6 +191,7 @@ test-cmd: build
187
191
# Example:
188
192
# make test-end-to-end
189
193
test-end-to-end : build
194
+ KUBE_COVER=" " KUBE_RACE=" " OS_TEST_PACKAGE=test/end-to-end hack/test-integration.sh
190
195
hack/test-end-to-end.sh
191
196
.PHONY : test-end-to-end
192
197
Original file line number Diff line number Diff line change 1
- package integration
1
+ package endtoend
2
2
3
3
import (
4
4
"crypto/tls"
You can’t perform that action at this time.
0 commit comments