Update gitignore to include pip cache directory

This commit is contained in:
Fabian von Feilitzsch
2020-08-18 14:14:23 -04:00
parent 06e7db3ef8
commit 2388d0336f
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
*.retry
.idea
*.log
.cache/
__pycache__/
# temp collection path

View File

@@ -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