From 673afdf1b5d95686ef89954e43587f8c667f046d Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Wed, 9 Jun 2021 12:39:33 -0400 Subject: [PATCH] Only install ansible-core for collection tests Faster! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee3e55b63e..9052b9a518 100644 --- a/Makefile +++ b/Makefile @@ -315,7 +315,7 @@ test_collection: if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/awx/bin/activate; \ fi && \ - pip install ansible && \ + pip install ansible-core && \ py.test $(COLLECTION_TEST_DIRS) -v # The python path needs to be modified so that the tests can find Ansible within the container # First we will use anything expility set as PYTHONPATH