HL Chassis Management
The following high-level functions help you manage test chassis.
Reserve/Release Chassis
- async reserve_tester(tester, force=True)[source]
Reserve a tester regardless whether it is owned by others or not.
- Parameters:
tester (
GenericAnyTester
) – The tester to reserveforce (boolean) – Should force reserve the tester
- Returns:
- Return type:
None
- async release_tester(tester, should_release_modules_ports=False)[source]
Free a tester. If the tester is reserved by you, release the tester. If the tester is reserved by others, relinquish the tester. The tester should have no owner afterwards.
- Parameters:
tester (
GenericAnyTester
) – The tester to freeshould_release_modules_ports (bool, optional) – should modules and ports also be freed, defaults to False
- Returns:
- Return type:
None