molecule-hetznercloud/Makefile

16 lines
223 B
Makefile
Raw Normal View History

2020-04-24 13:09:25 +00:00
DIRECTORY := integration
2020-04-24 12:12:57 +00:00
DRIVER := hetznercloud
default: test
clean:
@rm -rf $(DIRECTORY)
init: clean
@molecule init role -d $(DRIVER) $(DIRECTORY)
test:
@cd $(DIRECTORY) && molecule test
.PHONY: clean init test