[packages/python3-pytest] Rel 2; fixes reproducible builds when using explicit modules loading like: PYTEST_DISABLE_PLUGIN_AUT

arekm arekm at pld-linux.org
Mon Feb 10 19:49:12 CET 2025


commit ae51278b15eece7966248ed596543388fbfe4d92
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date:   Sat Feb 8 15:15:02 2025 +0100

    Rel 2; fixes reproducible builds when using explicit modules loading like: PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 PYTEST_PLUGINS=xyz,abc;  see https://github.com/pytest-dev/pytest/issues/12624

 pytest-dev-bug-12624.patch | 70 ++++++++++++++++++++++++++++++++++++++++++++++
 python3-pytest.spec        |  4 ++-
 2 files changed, 73 insertions(+), 1 deletion(-)
---
diff --git a/python3-pytest.spec b/python3-pytest.spec
index dd282fa..6bedc7d 100644
--- a/python3-pytest.spec
+++ b/python3-pytest.spec
@@ -10,12 +10,13 @@ Summary:	Simple and popular testing tool for Python
 Summary(pl.UTF-8):	Proste i popularne narzędzie testujące dla Pythona
 Name:		python3-%{module}
 Version:	8.3.4
-Release:	1
+Release:	2
 License:	MIT
 Group:		Development/Languages/Python
 #Source0Download: https://pypi.org/simple/pytest/
 Source0:	https://files.pythonhosted.org/packages/source/p/pytest/pytest-%{version}.tar.gz
 # Source0-md5:	542c4e802eeac1d196482e90a36533ed
+Patch0:		pytest-dev-bug-12624.patch
 URL:		https://pytest.org/
 BuildRequires:	python3-build
 BuildRequires:	python3-devel >= 1:3.7
@@ -97,6 +98,7 @@ Dokumentacja pakietu Pythona py.test.
 
 %prep
 %setup -q -n %{module}-%{version}
+%patch -P0 -p1
 
 %build
 export PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
diff --git a/pytest-dev-bug-12624.patch b/pytest-dev-bug-12624.patch
new file mode 100644
index 0000000..9fe5835
--- /dev/null
+++ b/pytest-dev-bug-12624.patch
@@ -0,0 +1,70 @@
+From de4b7b60405270a38a82c7c3cbf6da746bd55009 Mon Sep 17 00:00:00 2001
+From: Marcel Telka <marcel at telka.sk>
+Date: Tue, 16 Jul 2024 03:05:07 +0200
+Subject: [PATCH] Load plugins referencing entry point name provided via config
+ and env var
+
+This allows to load plugins via `PYTEST_PLUGINS` environment variable and
+`pytest_plugins` global variable using their names in installed package entry
+points.
+
+Closes #12624.
+---
+ AUTHORS                         | 1 +
+ changelog/12624.improvement.rst | 5 +++++
+ doc/en/reference/reference.rst  | 4 +++-
+ src/_pytest/config/__init__.py  | 2 +-
+ 4 files changed, 10 insertions(+), 2 deletions(-)
+ create mode 100644 changelog/12624.improvement.rst
+
+diff --git a/AUTHORS b/AUTHORS
+index 5c046ff5988..c6331cd022c 100644
+--- a/AUTHORS
++++ b/AUTHORS
+@@ -265,6 +265,7 @@ Mandeep Bhutani
+ Manuel Krebber
+ Marc Mueller
+ Marc Schlaich
++Marcel Telka
+ Marcelo Duarte Trevisani
+ Marcin Bachry
+ Marc Bresson
+diff --git a/changelog/12624.improvement.rst b/changelog/12624.improvement.rst
+new file mode 100644
+index 00000000000..7ca60d428dd
+--- /dev/null
++++ b/changelog/12624.improvement.rst
+@@ -0,0 +1,5 @@
++Plugins specified in the :globalvar:`pytest_plugins` config setting and
++:envvar:`PYTEST_PLUGINS` environment variable now allow using
++:ref:`entry points <pip-installable plugins>` names additionally to the
++importable definitions. Prior to this release, these identifiers used to only
++work with the ``-p`` CLI option -- by :user:`mtelka` and :user:`webknjaz`.
+diff --git a/doc/en/reference/reference.rst b/doc/en/reference/reference.rst
+index 26572174ad4..74d28aba431 100644
+--- a/doc/en/reference/reference.rst
++++ b/doc/en/reference/reference.rst
+@@ -1166,7 +1166,9 @@ specified plugins will be loaded.
+ 
+ .. envvar:: PYTEST_PLUGINS
+ 
+-Contains comma-separated list of modules that should be loaded as plugins:
++Contains comma-separated list of :term:`importable modules <Module>`
++or :ref:`entry point names <pip-installable plugins>` that should be
++loaded as plugins:
+ 
+ .. code-block:: bash
+ 
+diff --git a/src/_pytest/config/__init__.py b/src/_pytest/config/__init__.py
+index 6160f780b1b..8478b43e668 100644
+--- a/src/_pytest/config/__init__.py
++++ b/src/_pytest/config/__init__.py
+@@ -826,7 +826,7 @@ def _import_plugin_specs(
+     ) -> None:
+         plugins = _get_plugin_specs_as_list(spec)
+         for import_spec in plugins:
+-            self.import_plugin(import_spec)
++            self.import_plugin(import_spec, consider_entry_points=True)
+ 
+     def import_plugin(self, modname: str, consider_entry_points: bool = False) -> None:
+         """Import a plugin with ``modname``.
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python3-pytest.git/commitdiff/ae51278b15eece7966248ed596543388fbfe4d92



More information about the pld-cvs-commit mailing list