Files
kubevirt.core/Makefile
Felix Matouschek 55a6acef5d chore: Add tox-ansible configuration
Add tox-ansible configuration that allows to run tests with all
required ansible and python versions. Add Makefile targets to make use
of it.

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
2024-04-12 10:29:54 +02:00

31 lines
508 B
Makefile

all:
.PHONY: cluster-up
cluster-up:
hack/e2e-setup.sh
.PHONY: cluster-down
cluster-down:
hack/e2e-setup.sh --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