Skip to content

Commit a89287f

Browse files
author
Krzysztof Malczuk
committed
Fix error in declaring the environment variables and set the long to 30m and the medium to 5m
1 parent fc1b53d commit a89287f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Makefile

+4-6
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ ifneq ($(shell git status --porcelain),)
116116
BUILD_VERSION := $(BUILD_VERSION)-dirty
117117
endif
118118

119+
120+
119121
.PHONY: all
120122
all: build
121123

@@ -393,12 +395,8 @@ test-component: envtest ginkgo ## Run component tests.
393395

394396
.PHONY: test-e2e
395397
test-e2e: manifests fmt vet ## Run e2e tests.
396-
397-
export CODEFLARE_TEST_TIMEOUT_SHORT=10m
398-
export CODEFLARE_TEST_TIMEOUT_MEDIUM=20m
399-
export CODEFLARE_TEST_TIMEOUT_LONG=40m
400-
go test -v -skip "^Test.*Gpu$ " ./test/e2e
401-
398+
CODEFLARE_TEST_TIMEOUT_MEDIUM=5m CODEFLARE_TEST_TIMEOUT_LONG=30m go test -v -skip "^Test.*Gpu$$" ./test/e2e -timeout=60m
399+
402400
.PHONY: kind-e2e
403401
kind-e2e: ## Set up e2e KinD cluster
404402
test/e2e/kind.sh

0 commit comments

Comments
 (0)