File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ GOFMT_CMD := gofmt -s -l
26
26
GOVET_CMD := go tool vet
27
27
CI_HOST_TARGETS ?= "host-unit-test host-integ-test host-build-docker-image"
28
28
SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy|TestTrigger|ACIM|Netprofile"
29
+ K8S_SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy"
29
30
ACI_GW_IMAGE ?= "contiv/aci-gw:04-12-2017.2.2_1n"
30
31
31
32
all : build unit-test system-test ubuntu-tests
@@ -161,13 +162,13 @@ k8s-legacy-test:
161
162
k8s-test : k8s-cluster
162
163
cd vagrant/k8s/ && vagrant ssh k8master -c ' bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make run-build"'
163
164
cd $(GOPATH ) /src/github.com/contiv/netplugin/scripts/python && PYTHONIOENCODING=utf-8 ./createcfg.py -scheduler ' k8s' -binpath contiv/bin -install_mode ' kubeadm'
164
- CONTIV_K8S_USE_KUBEADM=1 CONTIV_NODES=3 go test -v -timeout 540m ./test/systemtests -check.v -check.abort -check.f " 00SSH|TestBasic|TestNetwork|TestPolicy "
165
+ CONTIV_K8S_USE_KUBEADM=1 CONTIV_NODES=3 go test -v -timeout 540m ./test/systemtests -check.v -check.abort -check.f $( K8S_SYSTEM_TESTS_TO_RUN )
165
166
cd vagrant/k8s && vagrant destroy -f
166
167
167
168
k8s-l3-test : k8s-l3-cluster
168
169
cd vagrant/k8s/ && vagrant ssh k8master -c ' bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make run-build"'
169
170
cd $(GOPATH ) /src/github.com/contiv/netplugin/scripts/python && PYTHONIOENCODING=utf-8 ./createcfg.py -scheduler ' k8s' -binpath contiv/bin -install_mode ' kubeadm' -contiv_l3=1
170
- CONTIV_K8S_USE_KUBEADM=1 CONTIV_NODES=3 go test -v -timeout 540m ./test/systemtests -check.v -check.abort -check.f " 00SSH|TestBasic|TestNetwork|TestPolicy "
171
+ CONTIV_K8S_USE_KUBEADM=1 CONTIV_NODES=3 go test -v -timeout 540m ./test/systemtests -check.v -check.abort -check.f $( K8S_SYSTEM_TESTS_TO_RUN )
171
172
cd vagrant/k8s && CONTIV_L3=1 vagrant destroy -f
172
173
# ===================================================================
173
174
You can’t perform that action at this time.
0 commit comments