-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
32 lines (26 loc) · 709 Bytes
/
mise.toml
File metadata and controls
32 lines (26 loc) · 709 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
[tools]
python = "3.13"
uv = "latest"
ty = "latest"
ruff = "latest"
prek = "latest"
gitleaks = "latest"
shellcheck = "latest"
[settings]
experimental = true
python.uv_venv_auto = "source"
idiomatic_version_file_enable_tools = ["python"]
[hooks]
enter = "bash ./scripts/enter_project.sh"
[env]
_.file = '.env' # for sensitive data
UV_LINK_MODE = "copy"
_.python.venv = ".venv"
[shell_alias]
pya = "source ./.venv/bin/activate"
[tasks.docs]
run = "zensical serve --dev-addr 0.0.0.0:8000"
description = "Serve the documentation locally"
[tasks.test]
run = "pytest --cov-report=term-missing --cov-fail-under=80"
description = "Run fast tests with coverage report for all packages (fails under 80%)"