diff --git a/.gitignore b/.gitignore index 3252ef6..a578213 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.retry .idea *.log +.cache/ __pycache__/ # temp collection path diff --git a/Makefile b/Makefile index 9cc0050..080194e 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ VERSION = 0.1.0 # To run sanity tests in a venv, set SANITY_TEST_ARGS to '--venv' -SANITY_TEST_ARGS ?= '--docker' +SANITY_TEST_ARGS ?= '--docker --color' clean: rm -f community-okd-$(VERSION).tar.gz @@ -15,7 +15,7 @@ install: build ansible-galaxy collection install -p ansible_collections community-okd-$(VERSION).tar.gz test-sanity: install - cd ansible_collections/community/okd && ansible-test sanity -v --color $(SANITY_TEST_ARGS) + cd ansible_collections/community/okd && ansible-test sanity -v $(SANITY_TEST_ARGS) test-integration: install molecule test