--- 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 ---