You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
280 B
Makefile

e2e: test clean
test:
cp -r tests/host_vars .
cp tests/ansible.cfg .
cp tests/docker-compose.yml .
cp tests/playbook.yml .
ansible-playbook playbook.yml
clean:
rm -r host_vars
rm ansible.cfg
rm docker-compose.yml
rm playbook.yml
deps:
pip install -r requirements.txt