Files
kubevirt.core/Makefile
Felix Matouschek 1a814389fe fix: Allow running make cluster-down when binaries are missing
Swap the order of commands in hack/e2e-setup.sh, so it becomes possible
to run 'make cluster-down` when the kind/kubectl binaries are missing.

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
2024-06-13 11:18:17 +02:00

31 lines
541 B
Makefile

all:
.PHONY: cluster-up
cluster-up:
hack/e2e-setup.sh
.PHONY: cluster-down
cluster-down:
hack/e2e-setup.sh --install-kind --install-kubectl --cleanup
.PHONY: build-venv
build-venv:
tox run -e venv
ln -sf .tox/venv .venv
.PHONY: format
format:
tox run -e format
.PHONY: test-sanity
test-sanity:
tox -f sanity --ansible -p auto --conf tox-ansible.ini
.PHONY: test-unit
test-unit:
tox -f unit --ansible -p auto --conf tox-ansible.ini
.PHONY: test-integration
test-integration:
tox -f integration --ansible --conf tox-ansible.ini