Skip to content

Commit a4e72a1

Browse files
committed
add power_on & connected to htrun grm allocate requirements
1 parent 5f1b4a2 commit a4e72a1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/mbed_os_tools/test/host_tests_conn_proxy/conn_primitive_remote.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ def __init__(self, name, config, importer=__import__):
2828
self.platform_name = config.get('platform_name', None)
2929
self.baudrate = config.get('baudrate', DEFAULT_BAUD_RATE)
3030
self.image_path = config.get('image_path', None)
31-
self.allocate_requirements = {"platform_name": self.platform_name}
31+
self.allocate_requirements = {
32+
"platform_name": self.platform_name,
33+
"power_on": True,
34+
"connected": True
35+
}
3236

3337
if self.config.get("tags"):
3438
self.allocate_requirements["tags"] = {}

0 commit comments

Comments
 (0)