From 0cdfc892d255a6647a8f1149d5f19f1aa5a3ce25 Mon Sep 17 00:00:00 2001 From: Dinis Cruz Date: Tue, 20 Aug 2024 16:08:26 +0100 Subject: [PATCH] fixed test --- tests/unit/helpers/trace/test_Trace_Call.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/helpers/trace/test_Trace_Call.py b/tests/unit/helpers/trace/test_Trace_Call.py index 7ea0d3b9..71d75a12 100644 --- a/tests/unit/helpers/trace/test_Trace_Call.py +++ b/tests/unit/helpers/trace/test_Trace_Call.py @@ -263,8 +263,8 @@ def test__trace_up_to_a_level(self): if sys.version_info < (3, 8): pytest.skip("Skipping test that need FIXING on 3.7 or lower") - if not in_github_action(): # todo: rewrite this test to use an example that is not - return # as expensive as Python_Logger since it is taking 200+ms (which is about 50% of the all OSBot_Utils tests + if not in_github_action(): # todo: rewrite this test to use an example that is not + pytest.skip("Skipping locally since it last") # as expensive as Python_Logger since it is taking 200+ms (which is about 50% of the all OSBot_Utils tests with self.config as _: _.all() _.up_to_depth(2) @@ -276,7 +276,7 @@ def test__trace_up_to_a_level(self): 'Here are the 8 traces captured\n' , '\x1b[1m📦 Trace Session\x1b[0m' , '\x1b[1m│ ├── 🔗️ Python_Logger.__init__\x1b[0m' , - '\x1b[1m│ │ ├── 🧩️ Python_Logger.__init__\x1b[0m', + '\x1b[1m│ │ ├── 🧩️ Python_Logger_Config.__init__\x1b[0m', '\x1b[1m│ │ ├── 🧩️ set_logger_name\x1b[0m' , '\x1b[1m│ │ ├── 🧩️ set_config\x1b[0m' , '\x1b[1m│ │ └── 🧩️ setup\x1b[0m' ,