Skip to content

Commit f06b10d

Browse files
authored
Skip full upgrade test suite (#3427)
1 parent cc3c907 commit f06b10d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ stop-longevity-test: nfr-test ## Stop the longevity test and collects results
120120

121121
.PHONY: .vm-nfr-test
122122
.vm-nfr-test: ## Runs the NFR tests on the GCP VM (called by `nfr-test`)
123-
go run github.com/onsi/ginkgo/v2/ginkgo --randomize-all --randomize-suites --keep-going --fail-on-pending \
123+
go run github.com/onsi/ginkgo/v2/ginkgo --randomize-all --randomize-suites --keep-going \
124124
--trace -r -v --buildvcs --force-newlines $(GITHUB_OUTPUT) \
125125
--label-filter "nfr" $(GINKGO_FLAGS) --timeout 5h ./suite -- --gateway-api-version=$(GW_API_VERSION) \
126126
--gateway-api-prev-version=$(GW_API_PREV_VERSION) --image-tag=$(TAG) --version-under-test=$(NGF_VERSION) \
@@ -132,7 +132,7 @@ stop-longevity-test: nfr-test ## Stop the longevity test and collects results
132132
.PHONY: test
133133
test: build-crossplane-image ## Runs the functional tests on your kind k8s cluster
134134
kind load docker-image nginx-crossplane:latest --name $(CLUSTER_NAME)
135-
go run github.com/onsi/ginkgo/v2/ginkgo --randomize-all --randomize-suites --keep-going --fail-on-pending \
135+
go run github.com/onsi/ginkgo/v2/ginkgo --randomize-all --randomize-suites --keep-going \
136136
--trace -r -v --buildvcs --force-newlines $(GITHUB_OUTPUT) \
137137
--label-filter "functional" $(GINKGO_FLAGS) ./suite -- \
138138
--gateway-api-version=$(GW_API_VERSION) --gateway-api-prev-version=$(GW_API_PREV_VERSION) \

tests/suite/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
// This test installs the latest released version of NGF, then upgrades to the edge version (or dev version).
2727
// During the upgrade, traffic is continuously sent to ensure no downtime.
2828
// We also check that the leader election lease has been updated, and that Gateway updates are processed.
29-
var _ = Describe("Upgrade testing", Label("nfr", "upgrade"), func() {
29+
var _ = PDescribe("Upgrade testing", Label("nfr", "upgrade"), func() {
3030
var (
3131
files = []string{
3232
"ngf-upgrade/cafe.yaml",

0 commit comments

Comments
 (0)