Files
kubevirt.core/Makefile
Felix Matouschek 35b2d3ef6b tests: Use ansible-test for integration tests
Integration tests do not work with tox, therefore use ansible-test to
run them.

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
2024-06-27 15:43:03 +02:00

31 lines
514 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:
ansible-test integration