File tree Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -1260,3 +1260,5 @@ get-dependency-version:
1260
1260
.PHONY : _update-all
1261
1261
_update-all :
1262
1262
@ (cd hack && go run update/update_all/update_all.go)
1263
+
1264
+ include tests/e2e/e2e.mk
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ OS=$( go env GOOS)
3
+ ARCH=$( go env GOARCH)
4
+ REPO_ROOT=" $( git rev-parse --show-toplevel) "
5
+ make # build the binary first
6
+ LATEST_RELEASE=$( curl -sSfL https://dl.k8s.io/release/stable.txt)
7
+ " ${REPO_ROOT} " /out/minikube start --nodes=2 --driver=docker --force --kubernetes-version=$LATEST_RELEASE
8
+
9
+ kubetest2-tester-ginkgo --test-package-marker stable.txt \
10
+ --focus-regex=' \[Conformance\]'
Original file line number Diff line number Diff line change
1
+ GOOS ?= $(shell go env GOOS)
2
+ GOARCH ?= $(shell go env GOARCH)
3
+
4
+ .PHONY : minikube-e2e-fast
5
+ minikube-e2e-fast :
6
+ ./tests/e2e/fast.sh
7
+
8
+ minikube-e2e-conformance :
9
+ ./tests/e2e/conformance.sh
10
+
11
+ integration-kvm-prow : # temp for prow
12
+ ./tests/e2e/fast.sh
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ OS=$( go env GOOS)
3
+ ARCH=$( go env GOARCH)
4
+ REPO_ROOT=" $( git rev-parse --show-toplevel) "
5
+ make # build the binary first
6
+ LATEST_RELEASE=$( curl -sSfL https://dl.k8s.io/release/stable.txt)
7
+ " ${REPO_ROOT} " /out/minikube start --nodes=2 --driver docker --force --kubernetes-version=$LATEST_RELEASE
8
+
9
+ kubetest2-tester-ginkgo --test-package-marker stable.txt \
10
+ --parallel=30 \
11
+ --skip-regex=' \[Driver:.gcepd\]|\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]'
You can’t perform that action at this time.
0 commit comments