Skip to content

Commit 5087c8a

Browse files
committed
Makefile: move list of K8S system tests to var
Signed-off-by: Cristian Staretu <[email protected]>
1 parent a450b39 commit 5087c8a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ GOFMT_CMD := gofmt -s -l
2626
GOVET_CMD := go tool vet
2727
CI_HOST_TARGETS ?= "host-unit-test host-integ-test host-build-docker-image"
2828
SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy|TestTrigger|ACIM|Netprofile"
29+
K8S_SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy"
2930
ACI_GW_IMAGE ?= "contiv/aci-gw:04-12-2017.2.2_1n"
3031

3132
all: build unit-test system-test ubuntu-tests
@@ -161,13 +162,13 @@ k8s-legacy-test:
161162
k8s-test: k8s-cluster
162163
cd vagrant/k8s/ && vagrant ssh k8master -c 'bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make run-build"'
163164
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)
165166
cd vagrant/k8s && vagrant destroy -f
166167

167168
k8s-l3-test: k8s-l3-cluster
168169
cd vagrant/k8s/ && vagrant ssh k8master -c 'bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin && make run-build"'
169170
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)
171172
cd vagrant/k8s && CONTIV_L3=1 vagrant destroy -f
172173
# ===================================================================
173174

0 commit comments

Comments
 (0)