@@ -38,7 +38,7 @@ def tearDownClass(cls):
38
38
39
39
@classmethod
40
40
def get_script_dir (cls ):
41
- return testutils .UNIT_TESTS_FOLDER / 'log_filtering_functions '
41
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions '
42
42
43
43
def test_debug_logging_enabled (self ):
44
44
"""
@@ -72,7 +72,7 @@ def tearDownClass(cls):
72
72
73
73
@classmethod
74
74
def get_script_dir (cls ):
75
- return testutils .UNIT_TESTS_FOLDER / 'log_filtering_functions '
75
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions '
76
76
77
77
def test_debug_logging_disabled (self ):
78
78
"""
@@ -115,7 +115,7 @@ def tearDownClass(cls):
115
115
116
116
@classmethod
117
117
def get_script_dir (cls ):
118
- return testutils .UNIT_TESTS_FOLDER / 'log_filtering_functions '
118
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions '
119
119
120
120
def test_debug_logging_filtered (self ):
121
121
"""
@@ -131,3 +131,24 @@ def check_log_debug_logging_filtered(self, host_out: typing.List[str]):
131
131
self .assertIn ('logging warning' , host_out )
132
132
self .assertNotIn ('logging debug' , host_out )
133
133
self .assertIn ('logging error' , host_out )
134
+
135
+
136
+ class TestDebugLoggingEnabledFunctionsStein (TestDebugLoggingEnabledFunctions ):
137
+
138
+ @classmethod
139
+ def get_script_dir (cls ):
140
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions_stein'
141
+
142
+
143
+ class TestDebugLoggingDisabledFunctionsStein (TestDebugLoggingDisabledFunctions ):
144
+
145
+ @classmethod
146
+ def get_script_dir (cls ):
147
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions_stein'
148
+
149
+
150
+ class TestDebugLogEnabledHostFilteringFunctionsStein (TestDebugLogEnabledHostFilteringFunctions ): # noqa
151
+
152
+ @classmethod
153
+ def get_script_dir (cls ):
154
+ return testutils .E2E_TESTS_FOLDER / 'debug_logging_functions_stein'
0 commit comments