Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-resultsdb_api for 
openSUSE:Factory checked in at 2026-01-27 16:15:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-resultsdb_api (Old)
 and      /work/SRC/openSUSE:Factory/.python-resultsdb_api.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-resultsdb_api"

Tue Jan 27 16:15:12 2026 rev:5 rq:1329394 version:2.1.5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-resultsdb_api/python-resultsdb_api.changes    
    2025-06-04 20:29:04.458277848 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-resultsdb_api.new.1928/python-resultsdb_api.changes
      2026-01-27 16:15:21.873668338 +0100
@@ -1,0 +2,6 @@
+Tue Jan 27 01:25:00 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-pytest-9.patch:
+  * Support pytest 9 changes.
+
+-------------------------------------------------------------------

New:
----
  support-pytest-9.patch

----------(New B)----------
  New:
- Add patch support-pytest-9.patch:
  * Support pytest 9 changes.
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-resultsdb_api.spec ++++++
--- /var/tmp/diff_new_pack.xkKGn4/_old  2026-01-27 16:15:23.633740826 +0100
+++ /var/tmp/diff_new_pack.xkKGn4/_new  2026-01-27 16:15:23.637740991 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-resultsdb_api
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,6 +23,8 @@
 License:        GPL-2.0-or-later
 URL:            https://pagure.io/taskotron/resultsdb_api
 Source:         
https://files.pythonhosted.org/packages/source/r/resultsdb_api/resultsdb_api-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE Support pytest 9 changes
+Patch0:         support-pytest-9.patch
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module wheel}
@@ -45,7 +47,7 @@
 and parameters skipping.
 
 %prep
-%setup -q -n resultsdb_api-%{version}
+%autosetup -p1 -n resultsdb_api-%{version}
 
 %build
 %pyproject_wheel

++++++ support-pytest-9.patch ++++++
Index: resultsdb_api-2.1.5/testing/conftest.py
===================================================================
--- resultsdb_api-2.1.5.orig/testing/conftest.py
+++ resultsdb_api-2.1.5/testing/conftest.py
@@ -8,10 +8,10 @@ def pytest_addoption(parser):
                      help='Add functional tests')
 
 
-def pytest_ignore_collect(path, config):
+def pytest_ignore_collect(collection_path, config):
     """Prevents collection of any files named functest* to speed up non
         integration tests"""
-    if path.fnmatch('*functest*'):
+    if collection_path.match("*functest*"):
         try:
             is_functional = config.getvalue('functional')
         except KeyError:

Reply via email to