-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (31 loc) · 645 Bytes
/
Copy pathMakefile
File metadata and controls
42 lines (31 loc) · 645 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
lt:
make l
make t
l:
make lint
lint:
ruff format .
mypy .
ruff check --fix .
flake8 .
complexipy . --failed
radon cc .
t:
make test
test:
pytest --cov context_async_sqlalchemy tests examples/fastapi_example/tests examples/starlette_example/tests examples/fastapi_with_pure_asgi_example/tests --cov-report=term-missing
test_fastapi:
pytest examples/fastapi_example/tests
test_starlette:
pytest examples/starlette_example/tests
uv:
uv sync
source .venv/bin/activate
build:
uv build
publish:
uv publish
docs_build:
mkdocs build -f docs_sources/mkdocs.yml -d ../docs
docs_serve:
mkdocs serve -f docs_sources/mkdocs.yml