We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5037de2 commit 816458cCopy full SHA for 816458c
Makefile
@@ -19,10 +19,12 @@ help:
19
qa: analyze test
20
21
analyze:
22
+ @uv add ruff --dev
23
@echo "Running code analysis..."
24
@uv run ruff check $(PYTHON_DIRS)
25
26
format:
27
28
@echo "Formatting code..."
29
@uv run ruff format $(PYTHON_DIRS)
30
@@ -31,10 +33,13 @@ lock:
31
33
@uv run uv lock
32
34
35
test:
36
+ @uv add pytest --dev
37
@echo "Running tests..."
38
@uv run pytest --maxfail=1
39
40
coverage:
41
42
+ @uv add pytest-cov --dev
43
@echo "Checking test coverage..."
44
@uv run pytest --cov=$(PACKAGE) --cov-report=term-missing $(TEST_DIR)
45
0 commit comments