mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
Add scripts/test-quick.sh and Makefile with: - test-quick: runs ruff check + unit tests + smoke tests - No real provider keys or platform accounts required - Suitable for local branch self-test Update tests/README.md: - Document test-quick command - Document test factories package - Add smoke tests and factories directory structure Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
470 B
Makefile
22 lines
470 B
Makefile
# LangBot Makefile
|
|
# Quick developer commands
|
|
|
|
.PHONY: test test-quick lint
|
|
|
|
# Run all tests (full suite with coverage)
|
|
test:
|
|
bash run_tests.sh
|
|
|
|
# Quick self-test for developers (lint + unit + smoke, no real credentials needed)
|
|
test-quick:
|
|
bash scripts/test-quick.sh
|
|
|
|
# Run linting only
|
|
lint:
|
|
ruff check src/langbot/ tests/
|
|
ruff format --check src/langbot/ tests/
|
|
|
|
# Fix linting issues
|
|
lint-fix:
|
|
ruff check --fix src/langbot/ tests/
|
|
ruff format src/langbot/ tests/
|