Skip to content

Commit

Permalink
Setup venv using uv if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhoherd committed Dec 3, 2024
1 parent a998d83 commit cb0a1f0
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 @@ -5,7 +5,7 @@ help: ## Print Makefile help.
@grep -Eh '^[a-z.A-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[1;36m%-20s\033[0m %s\n", $$1, $$2}'

venv: ## Setup venv required for unit testing the helm chart
virtualenv venv -p python3
uv venv venv -p 3.11 --seed || virtualenv venv -p python3
venv/bin/pip install -r requirements/chart.txt

charts: ## Update dependent charts
Expand Down

0 comments on commit cb0a1f0

Please sign in to comment.