-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (34 loc) · 1.18 KB
/
Makefile
File metadata and controls
42 lines (34 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.PHONY: sync test lint fmt fix check doc
# Install/update dependencies
sync:
uv sync
# Run tests with coverage (excludes integration tests)
# Usage: make test
# To run a specific test: make test TEST=test_file.py::test_function
test:
uv run pytest -m "not integration" --cov-report term-missing --cov=openfga_sdk $(if $(TEST),$(TEST),test/)
test-integration:
uv run pytest -m integration --cov-report term-missing --cov=openfga_sdk $(if $(TEST),$(TEST),test/)
# Run linter
lint:
uv run ruff check .
# Format code
fmt:
uv run ruff format .
# Fix fixable linting and formatting issues
fix:
uv run ruff check --fix .
uv run ruff format .
# Run checks (lint + test)
check: lint fmt test
# Show help
doc:
@echo "Available targets:"
@echo " sync - Install/update dependencies"
@echo " test - Run tests with coverage (excludes integration tests, use TEST=path.to.test to run specific tests)"
@echo " test-integration - Run integration tests with coverage"
@echo " lint - Run linter checks"
@echo " fmt - Format code"
@echo " fix - Fix fixable linting and formatting issues"
@echo " check - Run both linting and tests"
@echo " doc - Show this help message"