Skip to content

Commit ed03cdb

Browse files
committed
Removing '--app-config' parameter from call to mbedgt
1 parent ad45de3 commit ed03cdb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mbed/mbed.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2186,15 +2186,13 @@ def test_(toolchain=None, target=None, compile_list=False, run_list=False, compi
21862186
popen(['mbedgt', '--test-spec', test_spec, '--list']
21872187
+ (['-n', tests_by_name] if tests_by_name else [])
21882188
+ (['-V'] if verbose else [])
2189-
+ (['--app-config', app_config] if app_config else [])
21902189
+ args,
21912190
env=env)
21922191

21932192
if run_only or build_and_run_tests:
21942193
popen(['mbedgt', '--test-spec', test_spec]
21952194
+ (['-n', tests_by_name] if tests_by_name else [])
21962195
+ (['-V'] if verbose else [])
2197-
+ (['--app-config', app_config] if app_config else [])
21982196
+ args,
21992197
env=env)
22002198

0 commit comments

Comments
 (0)