This commit is contained in:
Mikalai Radchuk 2022-09-30 16:50:30 +01:00
Родитель f467218592
Коммит e2f927b67a
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -53,6 +53,6 @@ steps:
--env CLUSTER="v4-e2e-V$BUILD_BUILDID-$LOCATION" \
--entrypoint e2e.test \
"$IMAGE:$VERSION" \
-ginkgo.timeout 180m -test.v -ginkgo.v
-test.v --ginkgo.v --ginkgo.timeout 180m --ginkgo.flake-attempts=2
displayName: 🚀 Run ${{ parameters.location }} E2E

Просмотреть файл

@ -2,7 +2,7 @@ SHELL = /bin/bash
TAG ?= $(shell git describe --exact-match 2>/dev/null)
COMMIT = $(shell git rev-parse --short=7 HEAD)$(shell [[ $$(git status --porcelain) = "" ]] || echo -dirty)
ARO_IMAGE_BASE = ${RP_IMAGE_ACR}.azurecr.io/aro
E2E_FLAGS ?= -ginkgo.timeout 180m -test.v -ginkgo.v --ginkgo.flake-attempts=2
E2E_FLAGS ?= -test.v --ginkgo.v --ginkgo.timeout 180m --ginkgo.flake-attempts=2
# fluentbit version must also be updated in RP code, see pkg/util/version/const.go
FLUENTBIT_VERSION = 1.9.4-1

Просмотреть файл

@ -151,5 +151,5 @@ oc -n openshift-config get secrets/pull-secret -o template='{{index .data ".dock
### How to run operator e2e tests
```sh
go test ./test/e2e -v -ginkgo.v -ginkgo.focus="ARO Operator" -tags e2e
go test ./test/e2e -tags e2e -test.v --ginkgo.v --ginkgo.focus="ARO Operator"
```