File tree 1 file changed +13
-0
lines changed
src/python_testing/matter_testing_infrastructure/chip/testing
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -520,6 +520,19 @@ class DataModelLevel(str, Enum):
520
520
kDeviceType = 'device_types'
521
521
522
522
523
+ def _get_data_model_root () -> pathlib .PosixPath :
524
+ """Attempts to find the 'data_model' directory inside the 'chip.testing' package."""
525
+ # Access the 'chip.testing' package directly via importlib and pkg_resources
526
+ package = pkg_resources .files (importlib .import_module ('chip.testing' )) # Corrected: using importlib
527
+ try :
528
+ # We assume the 'data_model' directory is inside the package itself
529
+ data_model_root = package / 'data_model'
530
+ except FileNotFoundError :
531
+ raise FileNotFoundError (f"Data model directory not found in the package at { data_model_root } " )
532
+
533
+ return data_model_root
534
+
535
+
523
536
def get_data_model_directory (data_model_directory : Union [str ], data_model_level : str ) -> pathlib .PosixPath :
524
537
"""
525
538
Get the directory of the data model for a specific version and level from the installed package.
You can’t perform that action at this time.
0 commit comments