/
niceSOFT
/
python3-hatchling
Обзор
Документация
Войти
/
niceSOFT
/
python3-hatchling
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/hatch/env/internal/test.py
25 строк
794 B
Nathan Goldbaum
Add CI coverage for free-threaded Python 3.14 (#2125)
10 дек 2025, 18:46
Не верифицирован
10 дек 2025, 18:46
00c55f0
Код
Авторство
О чём код?
from __future__ import annotations from typing import Any def get_default_config() -> dict[str, Any]: return { "installer": "uv", "dependencies": [ "coverage-enable-subprocess==1.0", "coverage[toml]~=7.11", "pytest~=9.0", "pytest-mock~=3.12", "pytest-randomly~=3.15", "pytest-rerunfailures~=14.0", "pytest-xdist[psutil]~=3.5", ], "scripts": { "run": "pytest{env:HATCH_TEST_ARGS:} {args}", "run-cov": "coverage run -m pytest{env:HATCH_TEST_ARGS:} {args}", "cov-combine": "coverage combine", "cov-report": "coverage report", }, "matrix": [{"python": ["3.14", "3.14t", "3.13", "3.12", "3.11", "3.10"]}], }