Your message dated Wed, 25 Mar 2026 23:18:38 +0000
with message-id <[email protected]>
and subject line Bug#1098594: fixed in python-bellows 0.40.5-2
has caused the Debian Bug report #1098594,
regarding python-bellows: FTBFS: E           FileNotFoundError: [Errno 2] No 
such file or directory: '/dev/serial'
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.)


-- 
1098594: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098594
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-bellows
Version: 0.40.5-1
Severity: serious
Tags: ftbfs trixie sid

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:

--------------------------------------------------------------------------------
[...]
 debian/rules clean
make: pyversions: No such file or directory
py3versions: no X-Python3-Version in control file, using supported versions
dh clean --buildsystem=pybuild --with python3
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
make: pyversions: No such file or directory
py3versions: no X-Python3-Version in control file, using supported versions
dh binary --buildsystem=pybuild --with python3
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild

[... snipped ...]

flow_control = 'hardware'
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f4e71cddeb0>

    @pytest.mark.parametrize("flow_control", ["software", "hardware"])
    async def test_connect(flow_control, monkeypatch):
        appmock = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {
                    conf.CONF_DEVICE_PATH: "/dev/serial",
                    conf.CONF_DEVICE_BAUDRATE: 115200,
                    conf.CONF_DEVICE_FLOW_CONTROL: flow_control,
                }
            ),
            appmock,
            use_thread=False,
        )

tests/test_uart.py:24: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:187: in connect
    protocol, _ = await _connect(config, application)
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f4e71c78370, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=False, rtscts=True, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
____________________________ test_connect_threaded _____________________________

monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f4e71c7bb00>

    async def test_connect_threaded(monkeypatch):
        appmock = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
    
        def on_transport_close():
            gw.connection_lost(None)
    
        transport.close.side_effect = on_transport_close
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {conf.CONF_DEVICE_PATH: "/dev/serial", 
conf.CONF_DEVICE_BAUDRATE: 115200}
            ),
            appmock,
        )

tests/test_uart.py:56: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:179: in connect
    protocol, connection_done = await thread.run_coroutine_threadsafe(
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f4e71c60f10, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=True, rtscts=False, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
_________________ test_connection_lost_reset_error_propagation _________________

monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f4e721997f0>

    async def test_connection_lost_reset_error_propagation(monkeypatch):
        app = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
    
        def on_transport_close():
            gw.connection_lost(None)
    
        transport.close.side_effect = on_transport_close
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {conf.CONF_DEVICE_PATH: "/dev/serial", 
conf.CONF_DEVICE_BAUDRATE: 115200}
            ),
            app,
            use_thread=False,  # required until #484 is merged
        )

tests/test_uart.py:203: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:187: in connect
    protocol, _ = await _connect(config, application)
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f4e72ab2c20, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=True, rtscts=False, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
=============================== warnings summary ===============================
tests/test_application.py::test_startup_no_status
tests/test_application.py::test_startup_status_not_joined
tests/test_application.py::test_startup_status_unknown
tests/test_application.py::test_startup_end
tests/test_application.py::test_shutdown
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/bellows/zigbee/application.py:439:
 RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited
    self._ezsp.close()
  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.

tests/test_application.py::test_ensure_network_running_not_joined_success
  /usr/lib/python3.12/unittest/mock.py:2217: RuntimeWarning: coroutine 
'AsyncMockMixin._execute_mock_call' was never awaited
    def __init__(self, name, parent):
  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.

tests/test_application.py::test_connect_failure
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/bellows/zigbee/application.py:153:
 RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited
    ezsp.close()
  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_uart.py::test_connect[software] - FileNotFoundError: [Errno...
FAILED tests/test_uart.py::test_connect[hardware] - FileNotFoundError: [Errno...
FAILED tests/test_uart.py::test_connect_threaded - FileNotFoundError: [Errno ...
FAILED tests/test_uart.py::test_connection_lost_reset_error_propagation - Fil...
================== 4 failed, 332 passed, 7 warnings in 10.13s ==================
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build; python3.12 -m pytest tests
I: pybuild base:311: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; 
python3.13 -m pytest tests
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: 
PytestDeprecationWarning: The configuration option 
"asyncio_default_fixture_loop_scope" is unset.
The event loop scope for asynchronous fixtures will default to the fixture 
caching scope. Future versions of pytest-asyncio will default the loop scope 
for asynchronous fixtures to function scope. Set the default fixture loop scope 
explicitly in order to avoid unexpected behavior in the future. Valid fixture 
loop scopes are: "function", "class", "module", "package", "session"

  warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET))
============================= test session starts ==============================
platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build
configfile: pyproject.toml
plugins: asyncio-0.25.1, mock-3.14.0, typeguard-4.4.1, cov-5.0.0, timeout-2.3.1
asyncio: mode=Mode.AUTO, asyncio_default_fixture_loop_scope=None
collected 336 items

tests/test_application.py .............................................. [ 13%]
...................................                                      [ 24%]
tests/test_ash.py ...........................                            [ 32%]
tests/test_commands.py ....................                              [ 38%]
tests/test_ezsp.py ..................................................... [ 53%]
.................                                                        [ 58%]
tests/test_ezsp_protocol.py ........                                     [ 61%]
tests/test_ezsp_v10.py ....                                              [ 62%]
tests/test_ezsp_v11.py ..                                                [ 63%]
tests/test_ezsp_v12.py ..                                                [ 63%]
tests/test_ezsp_v13.py ........                                          [ 66%]
tests/test_ezsp_v14.py ......                                            [ 67%]
tests/test_ezsp_v4.py ........................                           [ 75%]
tests/test_ezsp_v5.py ......                                             [ 76%]
tests/test_ezsp_v6.py ...                                                [ 77%]
tests/test_ezsp_v7.py ...                                                [ 78%]
tests/test_ezsp_v8.py ....                                               [ 79%]
tests/test_ezsp_v9.py .....                                              [ 81%]
tests/test_multicast.py .........                                        [ 83%]
tests/test_thread.py ............                                        [ 87%]
tests/test_types.py .......                                              [ 89%]
tests/test_uart.py FFF........F...                                       [ 94%]
tests/test_util.py ......                                                [ 95%]
tests/test_zigbee_repairs.py ..............                              [100%]

=================================== FAILURES ===================================
____________________________ test_connect[software] ____________________________

flow_control = 'software'
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f0852ca2e40>

    @pytest.mark.parametrize("flow_control", ["software", "hardware"])
    async def test_connect(flow_control, monkeypatch):
        appmock = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {
                    conf.CONF_DEVICE_PATH: "/dev/serial",
                    conf.CONF_DEVICE_BAUDRATE: 115200,
                    conf.CONF_DEVICE_FLOW_CONTROL: flow_control,
                }
            ),
            appmock,
            use_thread=False,
        )

tests/test_uart.py:24: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:187: in connect
    protocol, _ = await _connect(config, application)
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f08500a3be0, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=False, rtscts=True, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
____________________________ test_connect[hardware] ____________________________

flow_control = 'hardware'
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f0852ca0f30>

    @pytest.mark.parametrize("flow_control", ["software", "hardware"])
    async def test_connect(flow_control, monkeypatch):
        appmock = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {
                    conf.CONF_DEVICE_PATH: "/dev/serial",
                    conf.CONF_DEVICE_BAUDRATE: 115200,
                    conf.CONF_DEVICE_FLOW_CONTROL: flow_control,
                }
            ),
            appmock,
            use_thread=False,
        )

tests/test_uart.py:24: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:187: in connect
    protocol, _ = await _connect(config, application)
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f08500a2950, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=False, rtscts=True, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
____________________________ test_connect_threaded _____________________________

monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f0852ca0d70>

    async def test_connect_threaded(monkeypatch):
        appmock = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
    
        def on_transport_close():
            gw.connection_lost(None)
    
        transport.close.side_effect = on_transport_close
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {conf.CONF_DEVICE_PATH: "/dev/serial", 
conf.CONF_DEVICE_BAUDRATE: 115200}
            ),
            appmock,
        )

tests/test_uart.py:56: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:179: in connect
    protocol, connection_done = await thread.run_coroutine_threadsafe(
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f0852041f90, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=True, rtscts=False, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
_________________ test_connection_lost_reset_error_propagation _________________

monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f0850cb25f0>

    async def test_connection_lost_reset_error_propagation(monkeypatch):
        app = MagicMock()
        transport = MagicMock()
    
        async def mockconnect(loop, protocol_factory, **kwargs):
            protocol = protocol_factory()
            loop.call_soon(protocol.connection_made, transport)
            return None, protocol
    
        monkeypatch.setattr(serial_asyncio, "create_serial_connection", 
mockconnect)
    
        def on_transport_close():
            gw.connection_lost(None)
    
        transport.close.side_effect = on_transport_close
>       gw = await uart.connect(
            conf.SCHEMA_DEVICE(
                {conf.CONF_DEVICE_PATH: "/dev/serial", 
conf.CONF_DEVICE_BAUDRATE: 115200}
            ),
            app,
            use_thread=False,  # required until #484 is merged
        )

tests/test_uart.py:203: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
bellows/uart.py:187: in connect
    protocol, _ = await _connect(config, application)
bellows/uart.py:158: in _connect
    transport, _ = await zigpy.serial.create_serial_connection(
/usr/lib/python3/dist-packages/zigpy/serial.py:137: in create_serial_connection
    raise exc.__context__ from None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Serial<id=0x7f0852041e70, open=False>(port='/dev/serial', 
baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=None, 
xonxoff=True, rtscts=False, dsrdtr=False)

    def open(self):
        """\
        Open port with current settings. This may throw a SerialException
        if the port cannot be opened."""
        if self._port is None:
            raise SerialException("Port must be configured before it can be 
used.")
        if self.is_open:
            raise SerialException("Port is already open.")
        self.fd = None
        # open
        try:
>           self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | 
> os.O_NONBLOCK)
E           FileNotFoundError: [Errno 2] No such file or directory: 
'/dev/serial'

/usr/lib/python3/dist-packages/serial/serialposix.py:322: FileNotFoundError
=============================== warnings summary ===============================
tests/test_application.py::test_startup_no_status
tests/test_application.py::test_startup_status_not_joined
tests/test_application.py::test_startup_status_unknown
tests/test_application.py::test_startup_end
tests/test_application.py::test_shutdown
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/bellows/zigbee/application.py:439:
 RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited
    self._ezsp.close()
  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.

tests/test_application.py::test_energy_scanning_partial
  /usr/lib/python3.13/unittest/mock.py:2245: RuntimeWarning: coroutine 
'AsyncMockMixin._execute_mock_call' was never awaited
    def __init__(self, name, parent):
  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.

tests/test_application.py::test_connect_failure
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/bellows/zigbee/application.py:153:
 RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited
    ezsp.close()
  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_uart.py::test_connect[software] - FileNotFoundError: [Errno...
FAILED tests/test_uart.py::test_connect[hardware] - FileNotFoundError: [Errno...
FAILED tests/test_uart.py::test_connect_threaded - FileNotFoundError: [Errno ...
FAILED tests/test_uart.py::test_connection_lost_reset_error_propagation - Fil...
================== 4 failed, 332 passed, 7 warnings in 8.07s ===================
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest tests
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.12 
3.13" returned exit code 13
make: *** [debian/rules:7: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

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

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 could not 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-bellows, so that this is still
visible in the BTS web page for this package.

Thanks.

--- End Message ---
--- Begin Message ---
Source: python-bellows
Source-Version: 0.40.5-2
Done: Alexandre Detiste <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-bellows, 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.
Alexandre Detiste <[email protected]> (supplier of updated python-bellows 
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: Wed, 25 Mar 2026 23:57:18 +0100
Source: python-bellows
Architecture: source
Version: 0.40.5-2
Distribution: unstable
Urgency: medium
Maintainer: Home Assistant Team <[email protected]>
Changed-By: Alexandre Detiste <[email protected]>
Closes: 1098594
Changes:
 python-bellows (0.40.5-2) unstable; urgency=medium
 .
   * Team Upload
   * Add debian/salsa-ci.yml
   * Use dh-sequence-python3
   * Bump Standards-Version to 4.7.3, drop Priority: tag
   * Add build-dep on python3-serial-asyncio
   * Skip failing tests (Closes: #1098594)
Checksums-Sha1:
 626d5d1e080117b8c62261936d86c19059a752bb 2471 python-bellows_0.40.5-2.dsc
 f6f3f32eecfe770a64f082a5cdb312830ae4ec9f 2716 
python-bellows_0.40.5-2.debian.tar.xz
 24936b4c3788fb27d8a77d0a6c5026bad36b7af6 7463 
python-bellows_0.40.5-2_source.buildinfo
Checksums-Sha256:
 4608d8f7a4113490b6d39341d148496df568b0b6e90c6a3ce21b11b865e6294b 2471 
python-bellows_0.40.5-2.dsc
 54a0ee3ed2652cc0604d88572e1de17a7fe6761c8415711727e85788e1193846 2716 
python-bellows_0.40.5-2.debian.tar.xz
 e6adfed5bae9530f3adffb59b07f040f0711f7045d96b6c594bbd59038f05023 7463 
python-bellows_0.40.5-2_source.buildinfo
Files:
 80021da4a3d711f2a385b9b15b90b05a 2471 python optional 
python-bellows_0.40.5-2.dsc
 820621b0d516a495196aa8e9bfe3ab56 2716 python optional 
python-bellows_0.40.5-2.debian.tar.xz
 cc17c3d990584749d0c7797bea6adda6 7463 python optional 
python-bellows_0.40.5-2_source.buildinfo

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

iQJFBAEBCgAvFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmnEaIYRHHRjaGV0QGRl
Ymlhbi5vcmcACgkQMfMURUShdBqf/RAAha4lx5VfHlUU5F3TSDW1oSc+QN6T43Va
XddGGs7nkgh+DzUpdFF1JgPb/ChqYRd8n6dtg6BxL1IKlWD7Qs5iCJSlMNtRlxEN
GwKVI2CTdlOegonCqtwT2wOgsCqZ5GOE91mxjaED5tK8seCDQYGLmcFJJsawFKgl
bnCAR8uUpQuvtOzDY/X5IaxxndemE9SdAUTTe822NSUA3f/MBN0kJG3/UJLBmqLJ
/kOclHWCiHVMCFL+EhH5XJgt2G11eVXupI0siRpzpgE9eRYWhL0PywjOe+oo/b1A
vQoqMGx2aspUZ/qY4pJWOkQCDhnzK1o82RREQHDDDbucgRIy669FkHWHV7iyRnIK
CPKxzMi9+4eZ0uDp9355Zg5HnmUMhsNToZ/qjUcN2mqc2Kb0ZWz9XuVgR6+ERLRW
6u2udTBctRuStbgTXTWaJIjrN+WKocw0mJpQ6SfNN1UMRuV37DubQ1ak8Sv61xpy
wKXN53lOIqXhHI1QG9rrPL0zrHc98DyPUMe0QNN8CJ0/zqLLeVEgWf/hi9pctZng
KCArXKVJ2r6ilxaJGKARBbOBswNJEeu/FZ29VDqVuCvEWnwwwI7SbC4nOKcOYM32
NiSZYhP++e+g8ZBoVDxvH8D84yiPgw08RH0nmya3RYr21AlUmus3Mr7zUrntxLee
WnlSxljWAGs=
=7ZIp
-----END PGP SIGNATURE-----

Attachment: pgpb8d6K8id4u.pgp
Description: PGP signature


--- End Message ---

Reply via email to