dev-python/pytest-cases: add 3.9.1

Previos version was buggy, causing some test failures on,
for example, dev-python/decopath

Closes: https://bugs.gentoo.org/928253
Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2025-08-15 18:33:16 +02:00
parent 10f912f52e
commit dbced7dc38
2 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pytest_cases-3.8.6.tar.gz 1092150 BLAKE2B 6db9e9e2116a5b961c615eec344439dd5afd86f6727e22ecdcce903368768886a89818a29766212b4ad663f9e7c2c004e3fb439937ce2a468dd7a3ac2adf7f04 SHA512 fe887a09ea63772c0c624afc35601c398b47884bf6f7571ffd5856a4c00df8633acdf6562972329c12ba27d54307c58435d1dcbd661fe7d32483e64fba40aff5
DIST pytest_cases-3.9.1.tar.gz 1094071 BLAKE2B 58399107030bc97d08a8a43534eb840d5426e02025215e58d0f1a48300d1b64a50969636b5dbcb96ad3b3479383ff0f6663e05b426d811a7e0491d2801894fd7 SHA512 46c8716bbd7a926c2b12c9190734f1779f236b8c8954aead75b4b83ea914e60520281bc1fd51420773ce08111dcb4e8f99ac646e468700bc1eb7e47873dd65dc

View File

@@ -0,0 +1,46 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
DOCS_BUILDER="mkdocs"
DOCS_DEPEND=(
dev-python/mkdocs-material
dev-python/regex
)
inherit distutils-r1 docs pypi
DESCRIPTION="Separate test code from test cases in pytest"
HOMEPAGE="
https://pypi.org/project/pytest-cases/
https://github.com/smarie/python-pytest-cases
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/decopatch[${PYTHON_USEDEP}]
>=dev-python/makefun-1.15.1[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-harvest[${PYTHON_USEDEP}]
dev-python/pytest-steps[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_compile_all() {
docs_compile
}