-
Notifications
You must be signed in to change notification settings - Fork 19
build: add make targets for install, uninstall, test, lint, clean, distclean #138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
trevor-vaughan
wants to merge
1
commit into
LobsterTrap:main
Choose a base branch
from
trevor-vaughan:feat/130-make-targets
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+64
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| # Development workflow targets | ||
| # install, uninstall, test, lint — all driven through uv against the local .venv. | ||
|
|
||
| # Pin uv to the project-local virtualenv. This overrides any global | ||
| # UV_PROJECT_ENVIRONMENT a developer may have set, guaranteeing every | ||
| # `uv sync` / `uv run` here targets ./.venv. | ||
| export UV_PROJECT_ENVIRONMENT := $(CURDIR)/.venv | ||
|
|
||
| .PHONY: install uninstall test lint clean distclean run | ||
|
|
||
| install: ## - install project + dev dependencies into local .venv (creates/updates .venv as needed) | ||
| @echo "Syncing dev environment into $(UV_PROJECT_ENVIRONMENT)..." | ||
| @uv sync --group dev | ||
|
|
||
| uninstall: ## - remove the lola-ai package from the local .venv (dev deps remain) | ||
| @if [ ! -x "$(UV_PROJECT_ENVIRONMENT)/bin/python" ]; then \ | ||
| echo "No venv at $(UV_PROJECT_ENVIRONMENT) — nothing to uninstall."; \ | ||
| else \ | ||
| echo "Uninstalling lola-ai from $(UV_PROJECT_ENVIRONMENT)..."; \ | ||
| uv pip uninstall lola-ai; \ | ||
| fi | ||
|
|
||
| test: ## - run the pytest suite | ||
| @echo "Running tests..." | ||
| @uv run pytest | ||
|
|
||
| run: ## - run the installed lola CLI; pass args via ARGS="..." (e.g., make run ARGS="mod ls") | ||
| @uv run lola $(ARGS) | ||
|
|
||
| lint: ## - run ruff (check + format check) and mypy on src | ||
| @echo "Running ruff check..." | ||
| @uv run ruff check src tests | ||
| @echo "Running ruff format check..." | ||
| @uv run ruff format --check src tests | ||
| @echo "Running mypy..." | ||
| @uv run mypy src | ||
|
|
||
| # Subtrees clean must never descend into: virtualenv, lola state, git internals. | ||
| # -prune (not -not -path) is required to skip the subtree entirely — otherwise | ||
| # find still descends and hits permission errors inside .lola/modules/. | ||
| CLEAN_PRUNE := \( -path './.venv' -o -path './.lola' -o -path './.git' \) -prune | ||
|
|
||
| clean: ## - remove build artifacts, caches, coverage, and Python bytecode (leaves .venv intact) | ||
| @echo "Cleaning build artifacts..." | ||
| @rm -rf build/ dist/ | ||
| @find . $(CLEAN_PRUNE) -o -type d -name '*.egg-info' -exec rm -rf {} + | ||
| @echo "Cleaning lint, type-check, and test caches..." | ||
| @rm -rf .pytest_cache/ .ruff_cache/ .mypy_cache/ | ||
| @echo "Cleaning coverage artifacts..." | ||
| @rm -rf .coverage htmlcov/ | ||
| @echo "Cleaning test output..." | ||
| @rm -rf .test-output/ | ||
| @echo "Cleaning Python bytecode..." | ||
| @find . $(CLEAN_PRUNE) -o -type d -name __pycache__ -exec rm -rf {} + | ||
| @find . $(CLEAN_PRUNE) -o -type f -name '*.pyc' -exec rm -f {} + | ||
| @echo "Done." | ||
|
|
||
| distclean: clean docs-clean ## - deep clean: also removes .venv and generated _version.py (slow to rebuild) | ||
| @echo "Removing virtual environment at $(UV_PROJECT_ENVIRONMENT)..." | ||
| @rm -rf $(UV_PROJECT_ENVIRONMENT) | ||
| @echo "Removing hatch-vcs generated _version.py..." | ||
| @rm -f src/lola/_version.py | ||
| @echo "Done. Run 'make install' to rebuild the environment." | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quote the venv path in destructive delete command.
Line 60 should quote
$(UV_PROJECT_ENVIRONMENT)to avoid path-splitting edge cases.Suggested patch
📝 Committable suggestion
🤖 Prompt for AI Agents