From 2388d0336fe4eb2f53bec33d50484390368da74b Mon Sep 17 00:00:00 2001 From: Fabian von Feilitzsch Date: Tue, 18 Aug 2020 14:14:23 -0400 Subject: [PATCH] Update gitignore to include pip cache directory --- .gitignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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