Coverage for bim2sim/plugins/PluginAixLib/bim2sim_aixlib/sim_settings.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-12 17:09 +0000
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-12 17:09 +0000
1from bim2sim.sim_settings import PlantSimSettings, PathSetting
4class AixLibSimSettings(PlantSimSettings):
5 """Defines simulation settings for AixLib Plugin.
7 This class defines the simulation settings for the AixLib Plugin. It
8 inherits all choices from the PlantSimSettings settings. AixLib
9 specific settings are added here.
10 """
12 path_aixlib = PathSetting(
13 default=None,
14 description='Path to the local AixLib`s repository. This needs to '
15 'point to the root level package.mo file. If not'
16 ' provided, the version for regression testing will be '
17 'used if it was already downloaded using the '
18 'prepare_regression_tests.py script.',
19 for_frontend=False,
20 mandatory=False
21 )