From 0481bd4e557cf656b50ca89e4e7848e9b03312ad Mon Sep 17 00:00:00 2001 From: Cameron Meadors Date: Mon, 17 Nov 2025 09:12:43 -0500 Subject: [PATCH] add no-color option to upstream e2e ci execution --- Makefile | 5 ++--- upstream/kueue/e2e-test-ocp.sh | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a8f8eb9df..284e52ce4 100644 --- a/Makefile +++ b/Makefile @@ -227,9 +227,8 @@ e2e-upstream-test: ginkgo oc apply -f test/e2e/bindata/assets/08_kueue_default.yaml ./hack/wait-for-kueue-leader-election.sh @echo "Running e2e tests on OpenShift cluster ($(shell oc whoami --show-server))" - mkdir -p "$(ARTIFACT_DIR)" - IMAGE_TAG=$(IMAGE_TAG) GINKGO_ARGS="$(GINKGO_ARGS)" \ - ARTIFACT_DIR=$(ARTIFACT_DIR) E2E_TARGET_FOLDER="singlecluster" \ + ARTIFACTS="$(LOCALBIN)/$@" IMAGE_TAG=$(IMAGE_TAG) GINKGO_ARGS="$(GINKGO_ARGS) --no-color" \ + E2E_TARGET_FOLDER="singlecluster" \ SKIP_DEPLOY=true \ ./upstream/kueue/e2e-test-ocp.sh diff --git a/upstream/kueue/e2e-test-ocp.sh b/upstream/kueue/e2e-test-ocp.sh index c1c6fb441..b0906fd38 100755 --- a/upstream/kueue/e2e-test-ocp.sh +++ b/upstream/kueue/e2e-test-ocp.sh @@ -97,6 +97,5 @@ $GINKGO ${GINKGO_ARGS:-} \ --output-dir="$ARTIFACT_DIR" \ --keep-going \ --flake-attempts=3 \ - --no-color \ -v ./upstream/kueue/src/test/e2e/"$E2E_TARGET_FOLDER"/...