Table of Contents
Test Report
View CI Run 2387 | Commit 62bfc06
🧪 Test Report
Generated on 2025-08-17 13:49:00 CEST
🧾 General Info
- duration: 5.0372655391693115
- root: /workspace/tligui_y/slic
- environment: {}
📋 Summary
- Error: 7
- Passed: 1
- Total: 8
- Collected: 8
🔎 Tests
❌ Error (7)
-
📄 test_utils_dbusnotify.py
↳ Function: test_suspend_on_idle
-
❌ Test 1
📌 Setup phase
duration:
0.00040810229256749153outcome:
failedlongrepr:
file /workspace/tligui_y/slic/tests/test_utils_dbusnotify.py, line 41 def test_suspend_on_idle(upower_mock): file /workspace/tligui_y/slic/tests/test_utils_dbusnotify.py, line 18 @pytest.fixture def upower_mock(dbusmock_system): E fixture 'dbusmock_system' not found > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, notifier, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, upower_mock > use 'pytest --fixtures [testpath]' for help on them. /workspace/tligui_y/slic/tests/test_utils_dbusnotify.py:18📌 Teardown phase
duration:
0.0002363012172281742outcome:
passed
↳ Function: test_notify_create
-
❌ Test 2
📌 Setup phase
duration:
0.0008346280083060265outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.0002491357736289501outcome:
passed
↳ Function: test_notify_update
-
❌ Test 3
📌 Setup phase
duration:
0.0007089809514582157outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.00023146811872720718outcome:
passed
↳ Function: test_get_server_info
-
❌ Test 4
📌 Setup phase
duration:
0.0006010090000927448outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.00022517284378409386outcome:
passed
↳ Function: test_get_capabilities
-
❌ Test 5
📌 Setup phase
duration:
0.0006158258765935898outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.00021276669576764107outcome:
passed
↳ Function: test_notify_and_close
-
❌ Test 6
📌 Setup phase
duration:
0.000590149313211441outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.00022678589448332787outcome:
passed
↳ Function: test_notify_invalid_value
-
❌ Test 7
📌 Setup phase
duration:
0.0006143958307802677outcome:
failedcrash:
path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service filestraceback:
- path: tests/test_utils_dbusnotify.py lineno: 50 message: None - path: slic/utils/dbusnotify.py lineno: 15 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 237 message: in get_object - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py lineno: 250 message: in __init__ - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 178 message: in activate_name_owner - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py lineno: 273 message: in start_service_by_name - path: .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py lineno: 634 message: DBusExceptionlongrepr:
self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.Notifications' def activate_name_owner(self, bus_name): if (bus_name is not None and bus_name[:1] != ':' and bus_name != BUS_DAEMON_NAME): try: > return self.get_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:348: in get_name_owner return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'GetNameOwner' signature = 's', args = ('org.freedesktop.Notifications',), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: GetNameOwner dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.freedesktop.Notifications': no such name .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException During handling of the above exception, another exception occurred: @pytest.fixture def notifier(): """Création de l'objet DBusNotify pour les tests.""" > return DBusNotify() tests/test_utils_dbusnotify.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ slic/utils/dbusnotify.py:15: in __init__ obj = bus.get_object(BUS_NAME, OBJECT_PATH) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:237: in get_object return self.ProxyObjectClass(self, bus_name, object_path, .pixi/envs/default/lib/python3.8/site-packages/dbus/proxies.py:250: in __init__ self._named_service = conn.activate_name_owner(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:178: in activate_name_owner self.start_service_by_name(bus_name) .pixi/envs/default/lib/python3.8/site-packages/dbus/bus.py:273: in start_service_by_name return (True, self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <dbus._dbus.SessionBus (session) at 0x7f0d52af1130> bus_name = 'org.freedesktop.DBus', object_path = '/org/freedesktop/DBus' dbus_interface = 'org.freedesktop.DBus', method = 'StartServiceByName' signature = 'su', args = ('org.freedesktop.Notifications', 0), timeout = -1.0 byte_arrays = False, kwargs = {}, get_args_opts = {'byte_arrays': False} message = <dbus.lowlevel.MethodCallMessage path: /org/freedesktop/DBus, iface: org.freedesktop.DBus, member: StartServiceByName dest: org.freedesktop.DBus> def call_blocking(self, bus_name, object_path, dbus_interface, method, signature, args, timeout=-1.0, byte_arrays=False, **kwargs): """Call the given method, synchronously. :Since: 0.81.0 """ if object_path == LOCAL_PATH: raise DBusException('Methods may not be called on the reserved ' 'path %s' % LOCAL_PATH) if dbus_interface == LOCAL_IFACE: raise DBusException('Methods may not be called on the reserved ' 'interface %s' % LOCAL_IFACE) # no need to validate other args - MethodCallMessage ctor will do get_args_opts = dict(byte_arrays=byte_arrays) if 'utf8_strings' in kwargs: raise TypeError("unexpected keyword argument 'utf8_strings'") message = MethodCallMessage(destination=bus_name, path=object_path, interface=dbus_interface, method=method) # Add the arguments to the function try: message.append(signature=signature, *args) except Exception as e: logging.basicConfig() _logger.error('Unable to set arguments %r according to ' 'signature %r: %s: %s', args, signature, e.__class__, e) raise # make a blocking call > reply_message = self.send_message_with_reply_and_block( message, timeout) E dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files .pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py:634: DBusException📌 Teardown phase
duration:
0.00026017194613814354outcome:
passed
-
✅ Passed (1)
-
📄 test_utils_dbusnotify.py
↳ Function: test_convert_dbus_strings
-
✅ Test 8
📌 Setup phase
duration:
0.00013987813144922256outcome:
passed📌 Call phase
duration:
0.0001780032180249691outcome:
passed📌 Teardown phase
duration:
0.00011244602501392365outcome:
passed
-
📚 Collected files
✅ (1 tests)
-
✅
- Outcome:
passed - result:
- nodeid: tests/test_utils_dbusnotify.py type: Module - Outcome:
✅ tests (2 tests)
-
✅ tests/test_utils_dbusnotify.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_dbusnotify.py::DBusTestCase type: UnitTestCase - nodeid: tests/test_utils_dbusnotify.py::test_suspend_on_idle type: Function lineno: 40 - nodeid: tests/test_utils_dbusnotify.py::test_notify_create type: Function lineno: 51 - nodeid: tests/test_utils_dbusnotify.py::test_notify_update type: Function lineno: 61 - nodeid: tests/test_utils_dbusnotify.py::test_get_server_info type: Function lineno: 72 - nodeid: tests/test_utils_dbusnotify.py::test_get_capabilities type: Function lineno: 82 - nodeid: tests/test_utils_dbusnotify.py::test_notify_and_close type: Function lineno: 96 - nodeid: tests/test_utils_dbusnotify.py::test_notify_invalid_value type: Function lineno: 107 - nodeid: tests/test_utils_dbusnotify.py::test_convert_dbus_strings type: Function lineno: 111-
✅ tests/test_utils_dbusnotify.py::DBusTestCase
- Outcome:
passed - result:
[] - Outcome:
- Outcome:
⚠️ Warnings
Warnings nº1
message: invalid escape sequence \-
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/bsread/h5.py
lineno: 207
Warnings nº2
message: The module numpy.dual is deprecated. Instead of using dual, use the functions directly from numpy or scipy.
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/scipy/fft/__init__.py
lineno: 97