forked from pypa/hatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhatch.toml
144 lines (135 loc) · 3.95 KB
/
hatch.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[envs.hatch-static-analysis]
config-path = "ruff_defaults.toml"
[envs.default]
dependencies = [
"coverage[toml]>=6.2",
"filelock>=3.7.1",
"pyfakefs",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-randomly",
"pytest-rerunfailures",
"pytest-xdist",
"trustme",
]
post-install-commands = [
"python -m pip install --disable-pip-version-check {verbosity:flag:-1} -e ./backend",
]
[envs.default.overrides]
env.GITHUB_ACTIONS.env-vars = "COVERAGE_REPORT="
[envs.default.scripts]
# --cov must not come before an argument in order to use the sources defined by config
_cov = "pytest --cov --cov-report={env:COVERAGE_REPORT:term-missing} --cov-config=pyproject.toml"
dev = "pytest -p no:randomly --no-cov {args:tests}"
cov = "_cov -p no:randomly {args:tests}"
full = "_cov -n auto --reruns 5 --reruns-delay 3 -r aR {args:tests}"
[envs.test.overrides]
env.HERMETIC_TESTS.type = [
{ value = "container", if = ["true"] },
"virtual",
]
[[envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[envs.coverage]
detached = true
dependencies = [
"coverage[toml]>=6.2",
"lxml",
]
[envs.coverage.scripts]
combine = "coverage combine {args}"
report-xml = "coverage xml"
report-uncovered-html = "coverage html --skip-covered --skip-empty"
generate-summary = "python scripts/generate_coverage_summary.py"
write-summary-report = "python scripts/write_coverage_summary_report.py"
[envs.types]
extra-dependencies = [
"mypy>=1.0.0",
]
[envs.types.scripts]
check = "mypy --install-types --non-interactive {args:backend/src/hatchling src/hatch tests}"
[envs.docs]
dependencies = [
"mkdocs~=1.5.3",
"mkdocs-material~=9.5.1",
# Plugins
"mkdocs-minify-plugin~=0.7.1",
"mkdocs-git-revision-date-localized-plugin~=1.2.1",
"mkdocs-git-committers-plugin-2~=2.2.2",
"mkdocstrings-python~=1.7.5",
"mkdocs-redirects~=1.2.1",
"mkdocs-glightbox~=0.3.5",
"mike~=2.0.0",
# Extensions
"mkdocs-click~=0.8.1",
"pymdown-extensions~=10.5.0",
# Necessary for syntax highlighting in code blocks
"pygments~=2.17.2",
# Validation
# https://github.com/linkchecker/linkchecker/pull/669#issuecomment-1267236287
"linkchecker @ git+https://github.com/linkchecker/linkchecker.git@d9265bb71c2054bf57b8c5734a4825d62505c779",
]
pre-install-commands = [
"python scripts/install_mkdocs_material_insiders.py",
]
[envs.docs.overrides]
env.GH_TOKEN_MKDOCS_MATERIAL_INSIDERS.env-vars = [
{ key = "MKDOCS_CONFIG", value = "mkdocs.insiders.yml" },
{ key = "MKDOCS_CONFIG", value = "mkdocs.yml", if = [""] },
{ key = "MKDOCS_IMAGE_PROCESSING", value = "true" },
]
[envs.docs.env-vars]
SOURCE_DATE_EPOCH = "1580601600"
PYTHONUNBUFFERED = "1"
MKDOCS_CONFIG = "mkdocs.yml"
[envs.docs.scripts]
build = "mkdocs build --config-file {env:MKDOCS_CONFIG} --clean --strict {args}"
serve = "mkdocs serve --config-file {env:MKDOCS_CONFIG} --dev-addr localhost:8000 {args}"
ci-build = "mike deploy --config-file {env:MKDOCS_CONFIG} --update-aliases {args}"
validate = "linkchecker --config .linkcheckerrc site"
# https://github.com/linkchecker/linkchecker/issues/678
build-check = [
"build --no-directory-urls",
"validate",
]
[envs.backend]
detached = true
dependencies = [
"build~=0.7.0",
"httpx",
]
[envs.backend.env-vars]
HATCH_BUILD_CLEAN = "true"
[envs.backend.scripts]
build = "python -m build backend"
publish = "hatch publish backend/dist"
version = "cd backend && hatch version {args}"
[envs.upkeep]
detached = true
dependencies = [
"httpx",
"ruff",
]
[envs.upkeep.scripts]
update-hatch = [
"update-distributions",
"update-ruff",
]
update-hatchling = [
"update-licenses",
]
update-distributions = "python scripts/update_distributions.py"
update-licenses = "python backend/scripts/update_licenses.py"
update-ruff = [
"python -m pip install --disable-pip-version-check --upgrade ruff",
"python scripts/update_ruff.py",
]
[envs.release]
detached = true
dependencies = [
"hatchling",
]
[envs.release.scripts]
bump = "python scripts/bump.py {args}"
github = "python scripts/release_github.py {args}"