Turn off Odin testing by default

pull/4795/head
Sarah Marsh 2017-09-05 12:22:25 -05:00
parent 8ef849da79
commit 92a642bc5e
2 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,8 @@ def get_config_path(conf_name, target_name):
def get_default_config(target_name):
if target_name in TARGET_CONFIGS:
config_name = TARGET_CONFIGS[target_name]['default_test_configuration']
if config_name == "NONE":
return None
return join(CONFIG_DIR, CONFIG_MAP[config_name])
else:
return None

View File

@ -1,6 +1,6 @@
{
"UBLOX_EVK_ODIN_W2": {
"default_test_configuration": "ODIN_ETHERNET",
"default_test_configuration": "NONE",
"test_configurations": ["ODIN_WIFI", "ODIN_ETHERNET"]
},
"K64F": {