summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/pytest-mpl/pytest-mpl-0.17.0.ebuild30
1 files 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
+}