mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-03-26 19:03:16 +00:00
Add tox configuration that allows to build a venv for development and to format source files. To make use of it add appropriate Makefile targets. Drop unneeded requirements from requirements.txt and test-requirements.txt and add needed requirements. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
19 lines
237 B
Makefile
19 lines
237 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
|