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 dadd031 + 09969dc commit e5a5dbdCopy full SHA for e5a5dbd
Makefile
@@ -120,7 +120,7 @@ install-envtest:
120
121
.PHONY: integration-test
122
integration-test: install-envtest
123
- $(INTEGTESTENVVAR) hack/integration-test.sh
+ $(INTEGTESTENVVAR) hack/integration-test.sh $(ARGS)
124
125
.PHONY: verify
126
verify:
hack/integration-test.sh
@@ -32,8 +32,8 @@ runTests() {
32
source "${TEMP_DIR}/setup-envtest"
33
34
kube::log::status "Running integration test cases"
35
- # TODO: make args customizable.
36
- go test -timeout=40m -mod=vendor sigs.k8s.io/scheduler-plugins/test/integration/...
+
+ go test -timeout=40m -mod=vendor sigs.k8s.io/scheduler-plugins/test/integration/... ${ARGS:-}
37
}
38
39
trap cleanup EXIT
0 commit comments