Clone
1
run 2305 TEST commit 42c8bf4
ci-bot edited this page 2025-08-15 18:19:26 +00:00

Test Report

View CI Run 2305 | Commit 42c8bf4

🧪 Test Report

Generated on 2025-08-15 20:19:02 CEST

🧾 General Info

  • duration: 5.106492519378662
  • root: /workspace/tligui_y/slic
  • environment: {}

📋 Summary

  • Error: 6
  • Passed: 1
  • Total: 7
  • Collected: 7

🔎 Tests

Error (6)
  • 📄 test_utils_dbusnotify.py

    Function: test_notify_create

    • Test 1

      📌 Setup phase

      duration:

      0.0009510009549558163
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.0003565419465303421
      

      outcome:

      passed
      

    Function: test_notify_update

    • Test 2

      📌 Setup phase

      duration:

      0.000619624275714159
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.0002518678084015846
      

      outcome:

      passed
      

    Function: test_get_server_info

    • Test 3

      📌 Setup phase

      duration:

      0.0006725378334522247
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.00024993764236569405
      

      outcome:

      passed
      

    Function: test_get_capabilities

    • Test 4

      📌 Setup phase

      duration:

      0.0006252811290323734
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.00024052010849118233
      

      outcome:

      passed
      

    Function: test_notify_and_close

    • Test 5

      📌 Setup phase

      duration:

      0.0006936429999768734
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.00025506317615509033
      

      outcome:

      passed
      

    Function: test_notify_invalid_value

    • Test 6

      📌 Setup phase

      duration:

      0.0007696263492107391
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py
      lineno: 696
      message: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
      

      traceback:

      -   path: tests/test_utils_dbusnotify.py
        lineno: 11
        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: 696
        message: DBusException
      

      longrepr:

      self = <dbus._dbus.SessionBus (session) at 0x7f3e52b57040>
      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 0x7f3e52b57040>
      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:696: 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:11: 
      _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
      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 0x7f3e52b57040>
      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:696: DBusException
      

      📌 Teardown phase

      duration:

      0.0002473550848662853
      

      outcome:

      passed
      
Passed (1)
  • 📄 test_utils_dbusnotify.py

    Function: test_convert_dbus_strings

    • Test 7

      📌 Setup phase

      duration:

      0.00013228598982095718
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00018517998978495598
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00011226208880543709
      

      outcome:

      passed
      

📚 Collected files

(1 tests)
    • Outcome: passed
    • result:
    -   nodeid: tests/test_utils_dbusnotify.py
      type: Module
    
tests (1 tests)
  • tests/test_utils_dbusnotify.py
    • Outcome: passed
    • result:
    -   nodeid: tests/test_utils_dbusnotify.py::test_notify_create
      type: Function
      lineno: 12
    -   nodeid: tests/test_utils_dbusnotify.py::test_notify_update
      type: Function
      lineno: 22
    -   nodeid: tests/test_utils_dbusnotify.py::test_get_server_info
      type: Function
      lineno: 33
    -   nodeid: tests/test_utils_dbusnotify.py::test_get_capabilities
      type: Function
      lineno: 43
    -   nodeid: tests/test_utils_dbusnotify.py::test_notify_and_close
      type: Function
      lineno: 57
    -   nodeid: tests/test_utils_dbusnotify.py::test_notify_invalid_value
      type: Function
      lineno: 68
    -   nodeid: tests/test_utils_dbusnotify.py::test_convert_dbus_strings
      type: Function
      lineno: 72
    

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