@@ -128,25 +128,18 @@ build-e2e-image:
128128 IMAGE_NAME=$(E2E_IMAGE_NAME ) VERSION=$(VERSION ) docker buildx bake e2e-image
129129
130130.PHONY : test-e2e
131- test-e2e : test-e2e-non-experimental test-e2e-experimental test-e2e-connhelper-ssh # # run all e2e tests
131+ test-e2e : test-e2e-local test-e2e-connhelper-ssh # # run all e2e tests
132132
133- .PHONY : test-e2e-experimental
134- test-e2e-experimental : build-e2e-image # run experimental e2e tests
135- docker run --rm $(ENVVARS ) -e DOCKERD_EXPERIMENTAL=1 \
136- --mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
137- --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
138- $(E2E_IMAGE_NAME )
139-
140- .PHONY : test-e2e-non-experimental
141- test-e2e-non-experimental : build-e2e-image # run non-experimental e2e tests
133+ .PHONY : test-e2e-local
134+ test-e2e-local : build-e2e-image # run experimental e2e tests
142135 docker run --rm $(ENVVARS ) \
143136 --mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
144137 --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
145138 $(E2E_IMAGE_NAME )
146139
147140.PHONY : test-e2e-connhelper-ssh
148141test-e2e-connhelper-ssh : build-e2e-image # run experimental SSH-connection helper e2e tests
149- docker run --rm $(ENVVARS ) -e DOCKERD_EXPERIMENTAL=1 -e TEST_CONNHELPER=ssh \
142+ docker run --rm $(ENVVARS ) -e TEST_CONNHELPER=ssh \
150143 --mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
151144 --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
152145 $(E2E_IMAGE_NAME )
0 commit comments