From 93234bb8eecf47960d3077bc78401ea9e39ebeee Mon Sep 17 00:00:00 2001 From: Jefferson Ramos Date: Fri, 11 Oct 2024 09:28:52 -0300 Subject: [PATCH] chore: update python install for test templates --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bead416b77..3796e14ae2 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ test-node: ## Test Node templates cd templates/node/http && npm ci && npm test && rm -rf node_modules test-python: ## Test Python templates - cd templates/python/cloudevents && pip3 install -r requirements.txt && python3 test_func.py && rm -rf __pycache__ + cd templates/python/cloudevents && python3 -m venv .venv && source .venv/bin/activate && pip3 install -r requirements.txt && python3 test_func.py && rm -rf __pycache__ cd templates/python/http && python3 test_func.py && rm -rf __pycache__ test-quarkus: ## Test Quarkus templates