mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 12:08:43 -04:00
53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..12} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="pytest plugin for testing mypy types, stubs, plugins"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/pytest-mypy-plugins/
|
|
https://github.com/typeddjango/pytest-mypy-plugins/
|
|
"
|
|
|
|
SRC_URI="https://github.com/typeddjango/pytest-mypy-plugins/archive/refs/tags/${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DOCS="README* CHANGELOG*"
|
|
|
|
RDEPEND="
|
|
>=dev-python/mypy-1.3.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-7.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/tomlkit-0.11[${PYTHON_USEDEP}]
|
|
dev-python/decorator[${PYTHON_USEDEP}]
|
|
dev-python/jinja2[${PYTHON_USEDEP}]
|
|
dev-python/jsonschema[${PYTHON_USEDEP}]
|
|
dev-python/packaging[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
dev-python/regex[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_prepare_all() {
|
|
# tests need pytest_mypy_plugins.tests on the modules search path and
|
|
# python -m pytest preprends sys.path with ${S}
|
|
sed "s/\"pytest\"/\"MY_EPYTHON\", \"-m\", \"pytest\"/" \
|
|
-i pytest_mypy_plugins/tests/test_explicit_configs.py || die
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_test() {
|
|
# substitute the correct interpreter
|
|
sed "s/MY_EPYTHON/${EPYTHON}/" -i pytest_mypy_plugins/tests/test_explicit_configs.py || die
|
|
distutils-r1_python_test
|
|
# reset for next interpreter run
|
|
sed "s/${EPYTHON}/MY_EPYTHON/" -i pytest_mypy_plugins/tests/test_explicit_configs.py || die
|
|
}
|