Your message dated Tue, 26 Dec 2023 15:50:45 +0000
with message-id <[email protected]>
and subject line Bug#1058113: fixed in pytest-qt 4.3.1-1
has caused the Debian Bug report #1058113,
regarding pytest-qt: FTBFS: RuntimeError: event processed
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1058113: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1058113
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: pytest-qt
Version: 4.2.0+repack-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: [email protected]
Usertags: ftbfs-20231212 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>/docs'
> sphinx-build -b html -d _build/doctrees   . _build/html
> Running Sphinx v7.2.6
> loading pickled environment... done
> building [mo]: targets for 0 po files that are out of date
> writing output... 
> building [html]: targets for 0 source files that are out of date
> updating environment: 0 added, 0 changed, 0 removed
> reading sources... 
> looking for now-outdated files... none found
> no targets are out of date.
> build succeeded.
> 
> The HTML pages are in _build/html.
> 
> Build finished. The HTML pages are in _build/html.
> make[1]: Leaving directory '/<<PKGBUILDDIR>>/docs'
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild pybuild:314: python3.12 setup.py egg_info -e 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build
> /usr/lib/python3/dist-packages/setuptools/__init__.py:84: 
> _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are 
> deprecated.
> !!
> 
>         
> ********************************************************************************
>         Requirements should be satisfied by a PEP 517 installer.
>         If you are using pip, you can try `pip install --use-pep517`.
>         
> ********************************************************************************
> 
> !!
>   dist.fetch_build_eggs(dist.setup_requires)
> WARNING: The wheel package is not available.
> running egg_info
> creating 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info
> writing 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/PKG-INFO
> writing dependency_links to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/dependency_links.txt
> writing entry points to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/entry_points.txt
> writing requirements to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/requires.txt
> writing top-level names to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/top_level.txt
> writing manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> reading manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> adding license file 'LICENSE'
> writing manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> I: pybuild base:310: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build; python3.12 -m pytest 
> tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0
> PyQt5 5.15.10 -- Qt runtime 5.15.10 -- Qt compiled 5.15.10
> rootdir: /<<PKGBUILDDIR>>
> configfile: setup.cfg
> plugins: qt-4.2.0+repack, xvfb-3.0.0
> collected 378 items
> 
> tests/test_basics.py .............................................       [ 
> 11%]
> tests/test_exceptions.py ..............F                                 [ 
> 15%]
> tests/test_logging.py ................................                   [ 
> 24%]
> tests/test_modeltest.py ................................                 [ 
> 32%]
> tests/test_qtbot_pep8_aliases.py ...........                             [ 
> 35%]
> tests/test_qtest_proxies.py ..............                               [ 
> 39%]
> tests/test_screenshot.py .............                                   [ 
> 42%]
> tests/test_wait_signal.py .............................................. [ 
> 55%]
> ........................................................................ [ 
> 74%]
> ...........................................................s............ [ 
> 93%]
> ...s................                                                     [ 
> 98%]
> tests/test_wait_until.py ......                                          
> [100%]
> 
> =================================== FAILURES 
> ===================================
> __________________________ test_exceptions_dont_leak 
> ___________________________
> 
> testdir = <Testdir 
> local('/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0')>
> 
>     @pytest.mark.xfail(
>         condition=sys.version_info[:2] == (3, 4),
>         reason="failing in Python 3.4, which is about to be dropped soon 
> anyway",
>     )
>     def test_exceptions_dont_leak(testdir):
>         """
>         Ensure exceptions are cleared when an exception occurs and don't leak 
> (#187).
>         """
>         testdir.makepyfile(
>             """
>             from pytestqt.qt_compat import qt_api
>             import gc
>             import weakref
>     
>             class MyWidget(qt_api.QtWidgets.QWidget):
>     
>                 def event(self, ev):
>                     called.append(1)
>                     raise RuntimeError('event processed')
>     
>             weak_ref = None
>             called = []
>     
>             def test_1(qapp):
>                 global weak_ref
>                 w = MyWidget()
>                 weak_ref = weakref.ref(w)
>                 qapp.postEvent(w, 
> qt_api.QtCore.QEvent(qt_api.QtCore.QEvent.Type.User))
>                 qapp.processEvents()
>     
>             def test_2(qapp):
>                 assert called
>                 gc.collect()
>                 assert weak_ref() is None
>         """
>         )
>         result = testdir.runpytest()
> >       result.stdout.fnmatch_lines(["*1 failed, 1 passed*"])
> E       Failed: nomatch: '*1 failed, 1 passed*'
> E           and: '============================= test session starts 
> =============================='
> E           and: 'platform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0'
> E           and: 'PyQtAPI 1.0 -- Qt runtime 2.5 -- Qt compiled 3.5'
> E           and: 'rootdir: 
> /tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0'
> E           and: 'plugins: qt-4.2.0+repack, xvfb-3.0.0'
> E           and: 'collected 2 items'
> E           and: ''
> E           and: 'test_exceptions_dont_leak.py FF                             
>              [100%]'
> E           and: ''
> E           and: '=================================== FAILURES 
> ==================================='
> E           and: '____________________________________ test_1 
> ____________________________________'
> E           and: 'CALL ERROR: Exceptions caught in Qt event loop:'
> E           and: 
> '________________________________________________________________________________'
> E           and: 'Traceback (most recent call last):'
> E           and: '  File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event'
> E           and: "    raise RuntimeError('event processed')"
> E           and: 'RuntimeError: event processed'
> E           and: 
> '________________________________________________________________________________'
> E           and: 'Traceback (most recent call last):'
> E           and: '  File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event'
> E           and: "    raise RuntimeError('event processed')"
> E           and: 'RuntimeError: event processed'
> E           and: 
> '________________________________________________________________________________'
> E           and: '----------------------------- Captured stderr call 
> -----------------------------'
> E           and: 'Exceptions caught in Qt event loop:'
> E           and: 
> '________________________________________________________________________________'
> E           and: 'Traceback (most recent call last):'
> E           and: '  File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event'
> E           and: "    raise RuntimeError('event processed')"
> E           and: 'RuntimeError: event processed'
> E           and: 
> '________________________________________________________________________________'
> E           and: 'Exceptions caught in Qt event loop:'
> E           and: 
> '________________________________________________________________________________'
> E           and: 'Traceback (most recent call last):'
> E           and: '  File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event'
> E           and: "    raise RuntimeError('event processed')"
> E           and: 'RuntimeError: event processed'
> E           and: 
> '________________________________________________________________________________'
> E           and: '____________________________________ test_2 
> ____________________________________'
> E           and: ''
> E           and: 'qapp = <PyQt5.QtWidgets.QApplication object at 
> 0x7f42f99876e0>'
> E           and: ''
> E           and: '    def test_2(qapp):'
> E           and: '        assert called'
> E           and: '        gc.collect()'
> E           and: '>       assert weak_ref() is None'
> E           and: 'E       assert <test_exceptions_dont_leak.MyWidget object 
> at 0x7f42f95b79b0> is None'
> E           and: 'E        +  where <test_exceptions_dont_leak.MyWidget 
> object at 0x7f42f95b79b0> = weak_ref()'
> E           and: ''
> E           and: 'test_exceptions_dont_leak.py:24: AssertionError'
> E           and: '=========================== short test summary info 
> ============================'
> E           and: 'FAILED test_exceptions_dont_leak.py::test_1 - Failed: CALL 
> ERROR: Exceptions ...'
> E           and: 'FAILED test_exceptions_dont_leak.py::test_2 - assert 
> <test_exceptions_dont_le...'
> E           and: '============================== 2 failed in 0.07s 
> ==============================='
> E       remains unmatched: '*1 failed, 1 passed*'
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py:381:
>  Failed
> ----------------------------- Captured stdout call 
> -----------------------------
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0
> PyQtAPI 1.0 -- Qt runtime 2.5 -- Qt compiled 3.5
> rootdir: /tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0
> plugins: qt-4.2.0+repack, xvfb-3.0.0
> collected 2 items
> 
> test_exceptions_dont_leak.py FF                                          
> [100%]
> 
> =================================== FAILURES 
> ===================================
> ____________________________________ test_1 
> ____________________________________
> CALL ERROR: Exceptions caught in Qt event loop:
> ________________________________________________________________________________
> Traceback (most recent call last):
>   File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event
>     raise RuntimeError('event processed')
> RuntimeError: event processed
> ________________________________________________________________________________
> Traceback (most recent call last):
>   File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event
>     raise RuntimeError('event processed')
> RuntimeError: event processed
> ________________________________________________________________________________
> ----------------------------- Captured stderr call 
> -----------------------------
> Exceptions caught in Qt event loop:
> ________________________________________________________________________________
> Traceback (most recent call last):
>   File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event
>     raise RuntimeError('event processed')
> RuntimeError: event processed
> ________________________________________________________________________________
> Exceptions caught in Qt event loop:
> ________________________________________________________________________________
> Traceback (most recent call last):
>   File 
> "/tmp/pytest-of-user42/pytest-13/test_exceptions_dont_leak0/test_exceptions_dont_leak.py",
>  line 9, in event
>     raise RuntimeError('event processed')
> RuntimeError: event processed
> ________________________________________________________________________________
> ____________________________________ test_2 
> ____________________________________
> 
> qapp = <PyQt5.QtWidgets.QApplication object at 0x7f42f99876e0>
> 
>     def test_2(qapp):
>         assert called
>         gc.collect()
> >       assert weak_ref() is None
> E       assert <test_exceptions_dont_leak.MyWidget object at 0x7f42f95b79b0> 
> is None
> E        +  where <test_exceptions_dont_leak.MyWidget object at 
> 0x7f42f95b79b0> = weak_ref()
> 
> test_exceptions_dont_leak.py:24: AssertionError
> =========================== short test summary info 
> ============================
> FAILED test_exceptions_dont_leak.py::test_1 - Failed: CALL ERROR: Exceptions 
> ...
> FAILED test_exceptions_dont_leak.py::test_2 - assert 
> <test_exceptions_dont_le...
> ============================== 2 failed in 0.07s 
> ===============================
> =============================== warnings summary 
> ===============================
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_basics.py::test_event_processing_before_and_after_teardown
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547745 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_basics.py::test_header
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547769 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_basics.py::test_widgets_closed_before_fixtures
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547773 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_basics.py::test_before_close_func
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547777 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_catch_exceptions_in_virtual_methods[False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547831 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_catch_exceptions_in_virtual_methods[True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547835 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_no_capture[True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547839 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_no_capture[False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547843 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_no_capture_preserves_custom_excepthook
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547847 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_call
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547851 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_widget_close
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547855 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_fixture_setup_and_teardown[setup]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547859 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_fixture_setup_and_teardown[teardown]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547863 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_capture_exceptions_qtbot_context_manager
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547867 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_exceptions.py::test_exceptions_dont_leak
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547871 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_basic_logging[True-True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547875 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_basic_logging[True-False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547879 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_basic_logging[False-True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547883 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_basic_logging[False-False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547887 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[--no-qt-log]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547891 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[--capture=no]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547895 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[-s]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547899 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_disable_qtlog_context_manager[True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547903 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_disable_qtlog_context_manager[False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547907 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_disable_qtlog_mark[True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547911 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_disable_qtlog_mark[False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547915 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_formatting
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547919 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[DEBUG-1]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547923 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[WARNING-2]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547927 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[CRITICAL-3]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547931 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[NO-4]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547935 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_tests_mark
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547939 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547943 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark',
>  extend=True-match-global]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547947 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark',
>  extend=True-match-mark]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547951 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark'-match-global]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547955 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark'-match-mark]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547959 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_without_extend[match-global-True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547963 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_without_extend[match-mark-False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547967 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_mark_with_invalid_argument
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547971 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore_mark_multiple[True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547975 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore_mark_multiple[False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547979 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_lineno_failure
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547983 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_logging.py::test_context_none
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547987 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_modeltest.py::test_qt_tester_valid
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 547991 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_modeltest.py::test_qt_tester_invalid
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548000 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_qtest_proxies.py::test_keyToAscii_not_available_on_pyqt
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548004 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_wait_signal.py::test_raising[false-False]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548008 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_wait_signal.py::test_raising[true-True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548012 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_wait_signal.py::test_raising[None-True]
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548016 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.12_pytestqt/build/tests/test_wait_signal.py::test_raising_by_default_overridden
>   /usr/lib/python3.12/subprocess.py:1127: ResourceWarning: subprocess 548020 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> =========================== short test summary info 
> ============================
> FAILED tests/test_exceptions.py::test_exceptions_dont_leak - Failed: 
> nomatch:...
> ============ 1 failed, 375 passed, 2 skipped, 51 warnings in 37.00s 
> ============
> E: pybuild pybuild:395: test: plugin distutils failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pytestqt/build; python3.12 -m pytest 
> tests
> I: pybuild pybuild:314: python3.11 setup.py egg_info -e 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build
> /usr/lib/python3/dist-packages/setuptools/__init__.py:84: 
> _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are 
> deprecated.
> !!
> 
>         
> ********************************************************************************
>         Requirements should be satisfied by a PEP 517 installer.
>         If you are using pip, you can try `pip install --use-pep517`.
>         
> ********************************************************************************
> 
> !!
>   dist.fetch_build_eggs(dist.setup_requires)
> WARNING: The wheel package is not available.
> running egg_info
> creating 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info
> writing 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/PKG-INFO
> writing dependency_links to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/dependency_links.txt
> writing entry points to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/entry_points.txt
> writing requirements to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/requires.txt
> writing top-level names to 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/top_level.txt
> writing manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> reading manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> adding license file 'LICENSE'
> writing manifest file 
> '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/pytest_qt.egg-info/SOURCES.txt'
> I: pybuild base:310: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build; python3.11 -m pytest 
> tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.7, pytest-7.4.3, pluggy-1.3.0
> PyQt5 5.15.10 -- Qt runtime 5.15.10 -- Qt compiled 5.15.10
> rootdir: /<<PKGBUILDDIR>>
> configfile: setup.cfg
> plugins: qt-4.2.0+repack, xvfb-3.0.0
> collected 378 items
> 
> tests/test_basics.py .............................................       [ 
> 11%]
> tests/test_exceptions.py ...............                                 [ 
> 15%]
> tests/test_logging.py ................................                   [ 
> 24%]
> tests/test_modeltest.py ................................                 [ 
> 32%]
> tests/test_qtbot_pep8_aliases.py ...........                             [ 
> 35%]
> tests/test_qtest_proxies.py ..............                               [ 
> 39%]
> tests/test_screenshot.py .............                                   [ 
> 42%]
> tests/test_wait_signal.py .............................................. [ 
> 55%]
> ........................................................................ [ 
> 74%]
> ...........................................................s............ [ 
> 93%]
> ...s................                                                     [ 
> 98%]
> tests/test_wait_until.py ......                                          
> [100%]
> 
> =============================== warnings summary 
> ===============================
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_basics.py::test_event_processing_before_and_after_teardown
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548034 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_basics.py::test_header
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548058 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_basics.py::test_widgets_closed_before_fixtures
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548062 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_basics.py::test_before_close_func
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548066 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_catch_exceptions_in_virtual_methods[False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548120 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_catch_exceptions_in_virtual_methods[True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548124 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_no_capture[True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548128 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_no_capture[False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548132 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_no_capture_preserves_custom_excepthook
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548136 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_call
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548140 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_widget_close
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548144 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_fixture_setup_and_teardown[setup]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548148 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_exception_capture_on_fixture_setup_and_teardown[teardown]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548152 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_capture_exceptions_qtbot_context_manager
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548156 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_exceptions.py::test_exceptions_dont_leak
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548160 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_basic_logging[True-True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548164 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_basic_logging[True-False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548168 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_basic_logging[False-True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548172 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_basic_logging[False-False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548176 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[--no-qt-log]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548180 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[--capture=no]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548184 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_fixture_with_logging_disabled[-s]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548188 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_disable_qtlog_context_manager[True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548192 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_disable_qtlog_context_manager[False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548196 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_disable_qtlog_mark[True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548200 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_disable_qtlog_mark[False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548204 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_formatting
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548208 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[DEBUG-1]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548212 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[WARNING-2]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548216 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[CRITICAL-3]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548220 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_tests[NO-4]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548224 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_tests_mark
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548228 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548232 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark',
>  extend=True-match-global]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548236 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark',
>  extend=True-match-mark]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548240 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark'-match-global]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548244 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_with_extend['match-mark'-match-mark]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548248 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_without_extend[match-global-True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548252 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_without_extend[match-mark-False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548256 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_mark_with_invalid_argument
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548260 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore_mark_multiple[True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548264 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_logging_fails_ignore_mark_multiple[False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548268 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_lineno_failure
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548272 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_logging.py::test_context_none
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548276 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_modeltest.py::test_qt_tester_valid
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548280 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_modeltest.py::test_qt_tester_invalid
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548289 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_qtest_proxies.py::test_keyToAscii_not_available_on_pyqt
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548293 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_wait_signal.py::test_raising[false-False]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548297 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_wait_signal.py::test_raising[true-True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548301 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_wait_signal.py::test_raising[None-True]
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548305 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> .pybuild/cpython3_3.11_pytestqt/build/tests/test_wait_signal.py::test_raising_by_default_overridden
>   /usr/lib/python3.11/subprocess.py:1127: ResourceWarning: subprocess 548309 
> is still running
>     _warn("subprocess %s is still running" % self.pid,
>   Enable tracemalloc to get traceback where the object was allocated.
>   See 
> https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
>  for more info.
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> ================= 376 passed, 2 skipped, 51 warnings in 37.19s 
> =================
> I: pybuild pybuild:340: rm -r 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pytestqt/build/*.egg-info
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.12 
> 3.11" returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2023/12/12/pytest-qt_4.2.0+repack-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20231212;[email protected]
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20231212&[email protected]&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: pytest-qt
Source-Version: 4.3.1-1
Done: Bastian Germann <[email protected]>

We believe that the bug you reported is fixed in the latest version of
pytest-qt, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Germann <[email protected]> (supplier of updated pytest-qt package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 26 Dec 2023 12:34:04 +0100
Source: pytest-qt
Architecture: source
Version: 4.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Bastian Germann <[email protected]>
Closes: 1058113
Changes:
 pytest-qt (4.3.1-1) unstable; urgency=medium
 .
   * Team upload
   * New upstream version 4.3.1 (Closes: #1058113)
Checksums-Sha1:
 ddeda2ae61498721c1a38c722e3cef99ce6248cc 2233 pytest-qt_4.3.1-1.dsc
 8c3f95855a61856503c8ec667c77163013f30f43 119603 pytest-qt_4.3.1.orig.tar.gz
 e7b033463bcfbc48ff3e6e3b10d21d7624d66122 5588 pytest-qt_4.3.1-1.debian.tar.xz
 91efc5f436d9fa62d3248d1b15ce74fcdeb6c687 11602 
pytest-qt_4.3.1-1_source.buildinfo
Checksums-Sha256:
 3b6b8877ee9b48c836d8836cc5d26d4055cdb4b102fb419180c91b6926ab277e 2233 
pytest-qt_4.3.1-1.dsc
 c4bcf1198fa0974fac5abe132bcbb2092c0740489a46c4d1013ddbcfb01f7fac 119603 
pytest-qt_4.3.1.orig.tar.gz
 33a5b02e23af815d077966a0ff18c9f01ea292b0c9bc6aba9520dce31ecdaacd 5588 
pytest-qt_4.3.1-1.debian.tar.xz
 bdf0bc0e79ac622664ce82e714090bc821c6f533dfbab6a67c2e6e1e5ee6b0ff 11602 
pytest-qt_4.3.1-1_source.buildinfo
Files:
 d358d6fa8eb1dc45b63fe4eac24d299d 2233 python optional pytest-qt_4.3.1-1.dsc
 f67f18917965f687d85754485885d7f2 119603 python optional 
pytest-qt_4.3.1.orig.tar.gz
 53515450e78947ff9bea9c51a48283ed 5588 python optional 
pytest-qt_4.3.1-1.debian.tar.xz
 43f3e618de76f185870e94072eda10e4 11602 python optional 
pytest-qt_4.3.1-1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmWKuvkQHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFEQLDADDYsvIUj5pUnZm9irm6cJOK+ppUfVVBTCy
E3ZbftQE1MVANlVKJAXRYVlh9QHlaQa8W2J2G2/YM0g7S3dpisP4FKNjNvsaNnDC
I1E97Ogb3i61f8WWsTrHx4U4n1bAwhjy2eMASGDKbXreh/vmeEE3i8tMfyT4gOxQ
Ik2d9QGXvtgOOw/h2ZUURTSj0ZRrJ6CsgkJ2+SrUUYf1uPRq3UOYcIHjkeyKso9a
kop1Tf9KmUqUAXAZhc8AyXyXeL9L4wBtsZgEHKj4IO9GnvTgfo4t1aDjq2FoedBy
/dgQjhWaAUJWUPOTxM6Az4LStL+vYtDIW9qXTKCP2Ea7hqOX81gFLssopyNNv11Q
mH3POeGL2Lg8TrK1juezxIMP8wdd0Yp97Ag0If8mh7SJTQDyYR6vWDvMKaZiJCTr
S3/2PsF8UjKUr+mCBCYiSqCgLmCI9tZ3inAUWBdVjeNqoWAAhau3SHBMlonnG+4I
P0HUfTL7QMhV3UTwnIspMTRXLyr7q1U=
=1kVi
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to