Skip to content

Commit

Permalink
chore: update python install for test templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jrangelramos committed Oct 11, 2024
1 parent 1aa24f7 commit 93234bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 93234bb

Please sign in to comment.