We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f62cf commit 59340a5Copy full SHA for 59340a5
src/test_pownet/test_core/test_builder.py
@@ -18,7 +18,10 @@ class TestModelBuilder(unittest.TestCase):
18
19
def setUp(self) -> None:
20
# Load the test data
21
- test_model_library_path = get_test_model_dir()
+ test_model_library_path = os.path.join(
22
+ os.path.dirname(__file__), "..", "test_model_library"
23
+ )
24
+ print(f"Test model library path: {test_model_library_path}")
25
26
self.inputs = SystemInput(
27
input_folder=test_model_library_path,
0 commit comments