tmux-amq/Makefile
tegwick 5774fbd548
Some checks failed
tamq-ci / test (push) Failing after 6s
feat: deliver installable local alpha sessions
Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a03397-4d51-7fd1-8ff2-946eb22ea2bc
2026-08-24 16:10:59 +02:00

18 lines
510 B
Makefile

.PHONY: install uninstall test check
install:
@command -v uv >/dev/null || { echo "tamq: uv is required; install it from https://docs.astral.sh/uv/" >&2; exit 1; }
uv tool install --force --reinstall --refresh .
@command -v tamq >/dev/null || { echo "tamq: installed, but the uv tool bin directory is not on PATH; run 'uv tool update-shell'" >&2; exit 1; }
tamq --version
uninstall:
uv tool uninstall tmux-amq
test:
uv run pytest
check:
uv run pytest
git diff --check
python3 -m compileall -q src