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 c940a2f commit 87150b7Copy full SHA for 87150b7
test/hitl/hitl_config.json renamed to test/hitl/hitl_hfp.json
test/hitl/hitl_test.py
@@ -172,7 +172,12 @@ def test_dfu_runtime(id):
172
173
174
if __name__ == '__main__':
175
- with open(f'{os.path.dirname(__file__)}/hitl_config.json') as f:
+ if len(sys.argv) != 2:
176
+ print('Usage:')
177
+ print('python hitl_test.py config.json')
178
+ sys.exit(-1)
179
+
180
+ with open(f'{os.path.dirname(__file__)}/{sys.argv[1]}') as f:
181
config = json.load(f)
182
183
for device in config['devices']:
0 commit comments