commit: f53f91fbe27e4ec7c9eb9762065d16bd85a3c165 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Mar 18 19:44:08 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Mar 18 20:13:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53f91fb
dev-python/pytest-mpl: Enable py3.13 Closes: https://bugs.gentoo.org/941848 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild | 30 ++++++++++++++++---------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild b/dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild index 7e134c37c359..b11e14491d0f 100644 --- a/dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild +++ b/dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 pypi @@ -27,13 +27,21 @@ RDEPEND=" dev-python/pytest[${PYTHON_USEDEP}] " -EPYTEST_DESELECT=( - tests/test_baseline_path.py::test_config - tests/test_pytest_mpl.py::test_formats - tests/test_results_always.py::test_config - tests/test_use_full_test_name.py::test_config - tests/subtests/test_subtest.py::test_default - tests/subtests/test_subtest.py::test_html_images_only -) - +EPYTEST_XDIST=1 distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # these tests are pinned to specific output image hashes + # and none match nowadays + tests/subtests/test_subtest.py + tests/test_baseline_path.py::test_config + tests/test_pytest_mpl.py::test_formats + tests/test_results_always.py::test_config + tests/test_use_full_test_name.py::test_config + ) + + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local -x PYTEST_PLUGINS=pytest_mpl.plugin + epytest +}
