Skip to content

Commit bc1c0ed

Browse files
committed
fix tests
1 parent b47aa6b commit bc1c0ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ TAG ?= ""
3737

3838
BUILD_DIR := build
3939
TEST_BUILD_DIR := build/test
40-
CERTS_DIR := build/certs
40+
CERTS_DIR := build/certs
4141
DOCS_DIR := docs
4242
PROTO_DIR := proto
4343
BINARY_NAME := nginx-agent
@@ -169,7 +169,7 @@ official-image-integration-test: $(SELECTED_PACKAGE) build-mock-management-plane
169169
TEST_ENV="Container" CONTAINER_OS_TYPE=$(CONTAINER_OS_TYPE) CONTAINER_NGINX_IMAGE_REGISTRY=${CONTAINER_NGINX_IMAGE_REGISTRY} BUILD_TARGET="install" \
170170
PACKAGES_REPO=$(OSS_PACKAGES_REPO) TAG=${TAG} PACKAGE_NAME=$(PACKAGE_NAME) BASE_IMAGE=$(BASE_IMAGE) DOCKERFILE_PATH=$(OFFICIAL_IMAGE_DOCKERFILE_PATH) \
171171
OS_VERSION=$(OS_VERSION) OS_RELEASE=$(OS_RELEASE) IMAGE_PATH=$(IMAGE_PATH) \
172-
go test -v -timeout 10m ./test/integration/managementplane
172+
go test -v ./test/integration/managementplane ./test/integration/auxiliarycommandserver
173173

174174
performance-test:
175175
@mkdir -p $(TEST_BUILD_DIR)

test/integration/utils/config_apply_utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import (
2020
)
2121

2222
const (
23-
RetryCount = 8
23+
RetryCount = 10
2424
RetryWaitTime = 5 * time.Second
25-
RetryMaxWaitTime = 6 * time.Second
25+
RetryMaxWaitTime = 1 * time.Minute
2626
)
2727

2828
var (

0 commit comments

Comments
 (0)