From 5389659ec6ae4c3f99ee658030035fc9f475e735 Mon Sep 17 00:00:00 2001 From: LBGarber Date: Tue, 13 Sep 2022 19:36:43 -0400 Subject: [PATCH] Include COLLECTION_VERSION in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4a51ea9c..9ef43367 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ COLLECTIONS_PATH ?= ~/.ansible/collections DOCS_PATH ?= docs -COLLECTION_VERSION ?= 0.0.0 +COLLECTION_VERSION ?= TEST_ARGS := -v INTEGRATION_CONFIG := tests/integration/integration_config.yml @@ -39,7 +39,7 @@ gendocs: DOCS_PATH=$(DOCS_PATH) ./scripts/specdoc_generate.sh ansible-doc-extractor --template=template/module.rst.j2 $(DOCS_PATH)/inventory plugins/inventory/*.py - python scripts/render_readme.py + python scripts/render_readme.py $(COLLECTION_VERSION) integration-test: $(INTEGRATION_CONFIG) ansible-test integration $(TEST_ARGS)