-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (32 loc) · 689 Bytes
/
Makefile
File metadata and controls
44 lines (32 loc) · 689 Bytes
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
43
44
.PHONY: dev-dependencies update-dependencies test docs fix check typing lint format ci-test ci-coverage qlty
#########################
###### dev commands #####
#########################
dev-dependencies:
uv lock --upgrade
uv sync --all-groups --frozen
test:
uv run pytest -n auto --cov
docs:
uv run mkdocs serve
fix:
uv run ruff format .
uv run ruff check . --fix
uv run ruff format .
qlty:
qlty smells --all
check:
uv run tox
typing:
uv run tox -e typing
lint:
uv run tox -e lint
format:
uv run tox -e format
#########################
###### CI commands ######
#########################
ci-test:
uv run pytest
ci-coverage:
uv run pytest --cov --cov-report lcov