Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OCPVE-588: chore: adjust e2e makefile / remove e2e-test #393

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -283,16 +283,15 @@ catalog-push: ## Push a catalog image.
##@ E2E tests

# Variables required to run and build LVM end to end tests.
LVM_OPERATOR_INSTALL ?= true
LVM_OPERATOR_UNINSTALL ?= true
LVM_OPERATOR_INSTALL ?= false
LVM_OPERATOR_UNINSTALL ?= false
SUBSCRIPTION_CHANNEL ?= alpha

# Handles only AWS as of now.
DISK_INSTALL ?= false

# Build and run e2e tests.
e2e-test: ginkgo ## Build and run e2e tests.
@echo "build and run e2e tests"
.PHONY: e2e
e2e: ginkgo ## Build and run e2e tests.
cd test/e2e && $(GINKGO) build
cd test/e2e && ./e2e.test --lvm-catalog-image=$(CATALOG_IMG) --lvm-subscription-channel=$(SUBSCRIPTION_CHANNEL) --lvm-operator-install=$(LVM_OPERATOR_INSTALL) --lvm-operator-uninstall=$(LVM_OPERATOR_UNINSTALL) --disk-install=$(DISK_INSTALL) -ginkgo.v

Expand Down Expand Up @@ -366,11 +365,6 @@ release-local-operator:
deploy-local:
hack/deploy-local.sh

.PHONY: e2e
e2e: ginkgo
cd test/e2e && $(GINKGO) build
cd test/e2e && ./e2e.test --lvm-operator-install=false --lvm-operator-uninstall=false -ginkgo.v

.PHONY: create-buildconfig
create-buildconfig:
hack/create-buildconfig.sh
Expand Down