You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.PHONY: test-coverage clean install dev format lint all server build upload-test upload release deptry mypy test-mcp test-mcp-extended test-integration
2
+
3
+
# Default target
4
+
all: clean install dev test-coverage format lint mypy deptry build test-mcp test-mcp-extended test-integration
5
+
6
+
# Install everything for development
7
+
dev:
8
+
uv sync --group dev
9
+
10
+
# Install production only
11
+
install:
12
+
uv sync
13
+
14
+
# Run tests with coverage
15
+
test-coverage:
16
+
uv run pytest --cov=ols_mcp --cov-report=html --cov-report=term tests/
0 commit comments