Source: panoramisk
Version: 1.4-2
Severity: serious
Justification: FTBFS
Tags: forky sid ftbfs
User: [email protected]
Usertags: ftbfs-20250919 ftbfs-forky

Hi,

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

The full build log is available from:
http://qa-logs.debian.net/2025/09/19/panoramisk_1.4-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20250919;[email protected]
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20250919&[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.

-- 
Relevant part of the build log (hopefully):
> make[1]: Entering directory '/build/reproducible-path/panoramisk-1.4'
> PYTHONPATH=. dh_auto_test
> I: pybuild base:311: cd 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build;
>  python3.13 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.13.7, pytest-8.4.2, pluggy-1.6.0
> rootdir: /build/reproducible-path/panoramisk-1.4
> configfile: setup.cfg
> plugins: asyncio-1.1.0, typeguard-4.4.4
> asyncio: mode=Mode.STRICT, asyncio_default_fixture_loop_scope=None, 
> asyncio_default_test_loop_scope=function
> collected 24 items
> 
> tests/test_connection.py E                                               [  
> 4%]
> tests/test_fast_agi.py E                                                 [  
> 8%]
> tests/test_manager.py EEEEEEEEEEEEEEEE                                   [ 
> 75%]
> tests/test_message.py ..                                                 [ 
> 83%]
> tests/test_protocol.py EE                                                [ 
> 91%]
> tests/test_utils.py ..                                                   
> [100%]
> 
> ==================================== ERRORS 
> ====================================
> _______________ ERROR at setup of test_reconnection_without_lost 
> _______________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_connection.py,
>  line 123
>   @pytest.mark.asyncio
>   async def test_reconnection_without_lost(event_loop):
>       unused_tcp_port = unused_tcp_port_factory()
> 
>       print('Start server on %s' % unused_tcp_port)
>       manager = Manager(loop=event_loop,
>                         host='127.0.0.1',
>                         port=unused_tcp_port,
>                         username='user',
>                         secret='secret')
>       server = Asterisk(event_loop, unused_tcp_port)
> 
>       await server.start()
>       await manager.connect()
>       await server.data_received()
>       print(server.actions)
>       login = server.actions[0]
>       assert login['action'] == 'Login'
>       unused_tcp_port = unused_tcp_port_factory()
> 
>       print('Restart server on %s' % unused_tcp_port)
>       server.port = unused_tcp_port
>       manager.config['port'] = unused_tcp_port
>       await server.stop()
> 
>       manager.send_action({'Action': 'Ping'})
>       f = manager.send_action({'Action': 'Test', 'Command': 'test'})
>       fully_booted = Event('FullyBooted')
> 
>       await asyncio.sleep(.1)
>       assert manager.awaiting_actions
>       await server.start()
>       await asyncio.sleep(2)
>       assert manager.awaiting_actions
>       manager.dispatch(fully_booted)
>       await asyncio.sleep(.5)
>       assert not manager.awaiting_actions
>       resp = await f
>       await server.stop()
> 
>       login2 = server.actions[0]
>       assert login2['action'] == 'Login'
>       assert login['actionid'] != login2['actionid']
> 
>       test_action = server.actions[-1]
>       assert test_action.id == resp.id
>       assert test_action['action'] == 'Test'
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_connection.py:123
> _________________ ERROR at setup of test_fast_agi_application 
> __________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_fast_agi.py,
>  line 52
>   @pytest.mark.asyncio
>   async def test_fast_agi_application(event_loop, unused_tcp_port):
>       fa_app = Application(loop=event_loop)
>       fa_app.add_route('call_waiting', call_waiting)
> 
>       server = await asyncio.start_server(fa_app.handler, '127.0.0.1',
>                                           unused_tcp_port)
> 
>       msg_back = await fake_asterisk_client(event_loop,
>                                             unused_tcp_port)
>       assert b'ANSWER\n' == msg_back
> 
>       server.close()
>       await server.wait_closed()
>       await asyncio.sleep(1)  # Wait the end of endpoint
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_fast_agi.py:52
> ______________________ ERROR at setup of test_connection 
> _______________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 21
>   def test_connection(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _________________________ ERROR at setup of test_ping 
> __________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 25
>   def test_ping(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _______________________ ERROR at setup of test_login_ok 
> ________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 31
>   @pytest.mark.asyncio
>   async def test_login_ok(manager):
>       manager = manager(username='xx', secret='xx', stream='login_ok.yaml')
>       authenticated = await manager.authenticated_future
>       assert authenticated.success is True
>       assert manager.login(manager.authenticated_future) is True
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _____________________ ERROR at setup of test_login_failed 
> ______________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 39
>   @pytest.mark.asyncio
>   async def test_login_failed(manager):
>       manager = manager(username='xx', secret='xx', 
> stream='login_failed.yaml')
>       authenticated = await manager.authenticated_future
>       assert authenticated.success is False
>       assert manager.login(manager.authenticated_future) is False
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> ________________________ ERROR at setup of test_logoff 
> _________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 47
>   def test_logoff(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _____________________ ERROR at setup of test_queue_status 
> ______________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 53
>   def test_queue_status(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> __________________ ERROR at setup of test_pjsip_show_endpoint 
> __________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 61
>   def test_pjsip_show_endpoint(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _______________ ERROR at setup of test_command_core_show_version 
> _______________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 69
>   def test_command_core_show_version(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _________________ ERROR at setup of test_asyncagi_get_variable 
> _________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 78
>   def test_asyncagi_get_variable(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _________ ERROR at setup of test_asyncagi_get_variable_on_dead_channel 
> _________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 90
>   def test_asyncagi_get_variable_on_dead_channel(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> ____________________ ERROR at setup of test_originate_sync 
> _____________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 100
>   def test_originate_sync(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _________________________ ERROR at setup of test_close 
> _________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 108
>   def test_close(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> ________________________ ERROR at setup of test_events 
> _________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 112
>   def test_events(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _______________ ERROR at setup of test_coroutine_events_handler 
> ________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 134
>   def test_coroutine_events_handler(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> ______________________ ERROR at setup of test_from_config 
> ______________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 150
>   def test_from_config(event_loop, tmpdir):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:150
> ________________________ ERROR at setup of test_pinger 
> _________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 166
>   def test_pinger(manager):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py,
>  line 11
>   @pytest.fixture
>   def manager(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, 
> > doctest_namespace, event_loop_policy, manager, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_manager.py:11
> _______________________ ERROR at setup of test_received 
> ________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py,
>  line 18
>   def test_received(conn):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py,
>  line 6
>   @pytest.fixture
>   def conn(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, conn, 
> > doctest_namespace, event_loop_policy, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py:6
> _________________________ ERROR at setup of test_send 
> __________________________
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py,
>  line 25
>   def test_send(conn):
> file 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py,
>  line 6
>   @pytest.fixture
>   def conn(request, event_loop):
> E       fixture 'event_loop' not found
> >       available fixtures: _class_scoped_runner, _function_scoped_runner, 
> > _module_scoped_runner, _package_scoped_runner, _session_scoped_runner, 
> > cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, conn, 
> > doctest_namespace, event_loop_policy, monkeypatch, pytestconfig, 
> > record_property, record_testsuite_property, record_xml_attribute, recwarn, 
> > tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, unused_tcp_port, 
> > unused_tcp_port_factory, unused_udp_port, unused_udp_port_factory
> >       use 'pytest --fixtures [testpath]' for help on them.
> 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build/tests/test_protocol.py:6
> =========================== short test summary info 
> ============================
> ERROR tests/test_connection.py::test_reconnection_without_lost
> ERROR tests/test_fast_agi.py::test_fast_agi_application
> ERROR tests/test_manager.py::test_connection
> ERROR tests/test_manager.py::test_ping
> ERROR tests/test_manager.py::test_login_ok
> ERROR tests/test_manager.py::test_login_failed
> ERROR tests/test_manager.py::test_logoff
> ERROR tests/test_manager.py::test_queue_status
> ERROR tests/test_manager.py::test_pjsip_show_endpoint
> ERROR tests/test_manager.py::test_command_core_show_version
> ERROR tests/test_manager.py::test_asyncagi_get_variable
> ERROR tests/test_manager.py::test_asyncagi_get_variable_on_dead_channel
> ERROR tests/test_manager.py::test_originate_sync
> ERROR tests/test_manager.py::test_close
> ERROR tests/test_manager.py::test_events
> ERROR tests/test_manager.py::test_coroutine_events_handler
> ERROR tests/test_manager.py::test_from_config
> ERROR tests/test_manager.py::test_pinger
> ERROR tests/test_protocol.py::test_received
> ERROR tests/test_protocol.py::test_send
> ========================= 4 passed, 20 errors in 0.10s 
> =========================
> E: pybuild pybuild:389: test: plugin distutils failed with: exit code=1: cd 
> /build/reproducible-path/panoramisk-1.4/.pybuild/cpython3_3.13_panoramisk/build;
>  python3.13 -m pytest tests
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.13 
> returned exit code 13

Reply via email to