ansible-capsul/makefile
decentral1se e623f61f27
Some checks reported errors
continuous-integration/drone/push Build was killed
Init this thing
2022-05-16 16:07:16 +02:00

10 lines
213 B
Makefile

ROLE := ansible-capsul
deps:
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
test:
cd $(ROLE) && ../.venv/bin/molecule test --destroy=never
.PHONY: deps test