Your message dated Sun, 04 Jan 2026 19:05:02 +0000
with message-id <[email protected]>
and subject line Bug#1123279: fixed in python-opentracing 2.4.0-3
has caused the Debian Bug report #1123279,
regarding python-opentracing: FTBFS: dh_auto_test: error: pybuild --test 
--test-pytest -i python{version} -p "3.14 3.13" returned exit code 13
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.)


-- 
1123279: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1123279
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-opentracing
Version: 2.4.0-2
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202512/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-opentracing, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --with=python3,sphinxdoc --buildsystem=pybuild
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:317: python3.14 setup.py clean 
/usr/lib/python3/dist-packages/setuptools/dist.py:599: 
SetuptoolsDeprecationWarning: Invalid dash-separated key 'description-file' in 
'metadata' (setup.cfg), please use the underscore name 'description_file' 
instead.
!!

        
********************************************************************************
        Usage of dash-separated 'description-file' will not be supported in 
future
        versions. Please use the underscore name 'description_file' instead.

        By 2026-Mar-03, you need to update your project and remove deprecated 
calls
        or your builds will no longer be supported.

[... snipped ...]

            assert scope is not None
            assert scope_manager.active is scope
    
            scope.close()
            assert span.finish.call_count == 0
            assert scope_manager.active is None
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:73: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
_______ AsyncioContextVarsCompabilityCheck.test_activate_finish_on_close _______

self = 
<tests.scope_managers.test_contextvars.AsyncioContextVarsCompabilityCheck 
testMethod=test_activate_finish_on_close>

    def test_activate_finish_on_close(self):
        def fn():
            scope_manager = self.scope_manager()
            span = mock.MagicMock(spec=Span)
    
            scope = scope_manager.activate(span, True)
            assert scope is not None
            assert scope_manager.active is scope
    
            scope.close()
            assert span.finish.call_count == 1
            assert scope_manager.active is None
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:102: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
___ AsyncioContextVarsCompabilityCheck.test_activate_finish_on_close_nested ____

self = 
<tests.scope_managers.test_contextvars.AsyncioContextVarsCompabilityCheck 
testMethod=test_activate_finish_on_close_nested>

    def test_activate_finish_on_close_nested(self):
        def fn():
            # finish_on_close must be correctly handled
            scope_manager = self.scope_manager()
            parent_span = mock.MagicMock(spec=Span)
            child_span = mock.MagicMock(spec=Span)
    
            parent = scope_manager.activate(parent_span, False)
            with scope_manager.activate(child_span, True):
                pass
            parent.close()
    
            assert parent_span.finish.call_count == 0
            assert child_span.finish.call_count == 1
            assert scope_manager.active is None
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:144: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
___________ AsyncioContextVarsCompabilityCheck.test_activate_nested ____________

self = 
<tests.scope_managers.test_contextvars.AsyncioContextVarsCompabilityCheck 
testMethod=test_activate_nested>

    def test_activate_nested(self):
        def fn():
            # when a Scope is closed, the previous one must be re-activated.
            scope_manager = self.scope_manager()
            parent_span = mock.MagicMock(spec=Span)
            child_span = mock.MagicMock(spec=Span)
    
            with scope_manager.activate(parent_span, True) as parent:
                assert parent is not None
                assert scope_manager.active is parent
    
                with scope_manager.activate(child_span, True) as child:
                    assert child is not None
                    assert scope_manager.active is child
    
                assert scope_manager.active is parent
    
            assert parent_span.finish.call_count == 1
            assert child_span.finish.call_count == 1
    
            assert scope_manager.active is None
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:126: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
__________ AsyncioContextVarsCompabilityCheck.test_close_wrong_order ___________

self = 
<tests.scope_managers.test_contextvars.AsyncioContextVarsCompabilityCheck 
testMethod=test_close_wrong_order>

    def test_close_wrong_order(self):
        def fn():
            # only the active `Scope` can be closed
            scope_manager = self.scope_manager()
            parent_span = mock.MagicMock(spec=Span)
            child_span = mock.MagicMock(spec=Span)
    
            parent = scope_manager.activate(parent_span, True)
            child = scope_manager.activate(child_span, True)
            parent.close()
    
            assert parent_span.finish.call_count == 0
            assert scope_manager.active == child
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:160: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
____________ AsyncioContextVarsCompabilityCheck.test_missing_active ____________

self = 
<tests.scope_managers.test_contextvars.AsyncioContextVarsCompabilityCheck 
testMethod=test_missing_active>

    def test_missing_active(self):
        def fn():
            scope_manager = self.scope_manager()
            assert scope_manager.active is None
    
>       self.run_test(fn)

opentracing/harness/scope_check.py:58: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/scope_managers/test_contextvars.py:41: in run_test
    asyncio.get_event_loop().run_until_complete(async_test_fn())
    ^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <asyncio.unix_events._UnixDefaultEventLoopPolicy object at 
0x7f5971aa2cf0>

    def get_event_loop(self):
        """Get the event loop for the current context.
    
        Returns an instance of EventLoop or raises an exception.
        """
        if self._local._loop is None:
>           raise RuntimeError('There is no current event loop in thread %r.'
                               % threading.current_thread().name)
E           RuntimeError: There is no current event loop in thread 'MainThread'.

/usr/lib/python3.14/asyncio/events.py:715: RuntimeError
=========================== short test summary info ============================
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_activate
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_activate_finish_on_close
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_activate_finish_on_close_nested
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_activate_nested
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_close_wrong_order
FAILED 
tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_missing_active
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_activate
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_activate_finish_on_close
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_activate_finish_on_close_nested
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_activate_nested
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_close_wrong_order
FAILED 
tests/scope_managers/test_contextvars.py::AsyncioContextVarsCompabilityCheck::test_missing_active
=================== 12 failed, 94 passed, 8 skipped in 0.21s ===================
E: pybuild pybuild:389: test: plugin distutils failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_opentracing/build; python3.14 -m pytest 
tests
I: pybuild base:317: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_opentracing/build; python3.13 -m pytest 
tests
============================= test session starts ==============================
platform linux -- Python 3.13.11, pytest-9.0.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>
plugins: typeguard-4.4.4
collected 114 items

tests/mocktracer/test_api.py .........................                   [ 21%]
tests/mocktracer/test_propagation.py ...                                 [ 24%]
tests/mocktracer/test_span.py .                                          [ 25%]
tests/mocktracer/test_tracer.py ..                                       [ 27%]
tests/scope_managers/test_asyncio.py .........                           [ 35%]
tests/scope_managers/test_contextvars.py .........                       [ 42%]
tests/scope_managers/test_threadlocal.py ........                        [ 50%]
tests/scope_managers/test_tornado.py ssssssss                            [ 57%]
tests/test_api.py .........................                              [ 78%]
tests/test_api_check_mixin.py .....                                      [ 83%]
tests/test_globaltracer.py ....                                          [ 86%]
tests/test_noop_span.py ....                                             [ 90%]
tests/test_noop_tracer.py ..                                             [ 92%]
tests/test_scope.py ....                                                 [ 95%]
tests/test_scope_check_mixin.py ....                                     [ 99%]
tests/test_scope_manager.py .                                            [100%]

=============================== warnings summary ===============================
.pybuild/cpython3_3.13_opentracing/build/tests/scope_managers/test_asyncio.py::AsyncioCompabilityCheck::test_activate
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_opentracing/build/tests/scope_managers/test_asyncio.py:40:
 DeprecationWarning: There is no current event loop
    asyncio.get_event_loop().run_until_complete(async_test_fn())

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
================== 106 passed, 8 skipped, 1 warning in 0.13s ===================
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" returned exit code 13
make: *** [debian/rules:6: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: python-opentracing
Source-Version: 2.4.0-3
Done: Colin Watson <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-opentracing, 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.
Colin Watson <[email protected]> (supplier of updated python-opentracing 
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: Sun, 04 Jan 2026 18:47:14 +0000
Source: python-opentracing
Architecture: source
Version: 2.4.0-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Colin Watson <[email protected]>
Closes: 1123279
Changes:
 python-opentracing (2.4.0-3) unstable; urgency=medium
 .
   * Team upload.
   * Fix test failures with Python 3.14 (closes: #1123279).
   * Use pybuild-plugin-pyproject.
   * Use dh-sequence-python3 and dh-sequence-sphinxdoc.
   * Drop "Rules-Requires-Root: no", default as of dpkg-dev 1.22.13.
   * Enable autopkgtest-pkg-pybuild.
Checksums-Sha1:
 5a993c5f7741238aae23a6db2818323b6cd75547 2714 python-opentracing_2.4.0-3.dsc
 70f34cf067735bd55817f7211fc28ce4647034ef 6152 
python-opentracing_2.4.0-3.debian.tar.xz
 7b5614786b9447dd5bfbbe0a3fd6bb7747748af3 156560 
python-opentracing_2.4.0-3.git.tar.xz
 67f5f740384b809f1d5a6e8484601a73f7a66228 17177 
python-opentracing_2.4.0-3_source.buildinfo
Checksums-Sha256:
 dc32b4febebfc248f7cc201e079da2e97160f01f349e6ad7ffb7cc54aff68596 2714 
python-opentracing_2.4.0-3.dsc
 e166d7faee35d3141d144998ba29f5e49e48909b00b2716a378196ecabbc3431 6152 
python-opentracing_2.4.0-3.debian.tar.xz
 3af2b69df975bd0859b71c40de5c74c3bd85429c661897da8c181a72a7bc8d31 156560 
python-opentracing_2.4.0-3.git.tar.xz
 efe6bcbe5791146324f2dcb212310443ecf8cd2eeaab267ac2892e74c36e6389 17177 
python-opentracing_2.4.0-3_source.buildinfo
Files:
 312dd3d34652b82ca88da482f21b31e6 2714 python optional 
python-opentracing_2.4.0-3.dsc
 1f7b0b155f26e5a91dd7c189ff0c9830 6152 python optional 
python-opentracing_2.4.0-3.debian.tar.xz
 3028da9229ae2ba7c70a92ef36fc8e74 156560 python optional 
python-opentracing_2.4.0-3.git.tar.xz
 c7688f92d3f4ecfef4e0010344a7ba83 17177 python optional 
python-opentracing_2.4.0-3_source.buildinfo
Git-Tag-Info: tag=0aafb7d48cb4e225432fc3a8e3d0a9bf44e80e12 
fp=ac0a4ff12611b6fccf01c111393587d97d86500b
Git-Tag-Tagger: Colin Watson <[email protected]>

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

iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmlatzoACgkQYG0ITkaD
wHk8hBAApGpaRc46ToMtErUBVQMBNwtsZEQlfTtCxHsnM7iLK4Qj8mbIrjlcjB9S
Nwiy4xYlBs6LEcC+XD6jtbYoQjxcDRJBmgELoo2XhFQKsTFHCHhePwpDB0kHTg/U
HAnIw9eDWtwnXTugaLx3hh2HGjc86FtA7TR5u8SPqBOiygwIscXRJGkOo6mZnuke
WlFs3tkSnA3mgXjfxurZcA2oK8rR4ieHPzLYcY2uCy58HaiYnwViGkJLN1sc7rqg
2tlT0aUd2w+cggwmAYtxmj7uZg+lwKtKI+yf6LZfglfz3VXEBwJogwxhl6jgAa8A
+dKgpDdDuWMLoeau8EtMI6K6BMgQG4okUhn//r58qQTvyvqmHhEkgCa3h0g4jvFZ
tKEbneWJzoN2+/IWr4daEXbQNgqwHayS6DN9IfGYplBmKw8OZB3M/BbIJFg3Zuny
x/fu+yknAvrl9QUXzvIOyai3w96OQeTVtVW9b33BLQkjVpNMJSuwR2HkeLgVlEbw
R+AI+HLVuniVC8u21+tsF9CSn6Wk3SNFjO4IN8vf2Zl47RdVdSkw1FKSOt7zH+Xc
IQ9tmoEkaJmXqAN4w2MSu6H0Opw7pAh2jAJ0SxlncZ2x0Flgo3BuRaO6cZD6VO4K
WKl1Tp11jZtnuHSpNwOlng94QeZKpbhWedOtNYOBDim97FnUtHw=
=7mg8
-----END PGP SIGNATURE-----

Attachment: pgppOST7LvzX8.pgp
Description: PGP signature


--- End Message ---

Reply via email to