Skip to content

Commit a9abcf1

Browse files
committed
Add aliases to example exporter options
1 parent 047cb63 commit a9abcf1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/test/examples/examples_lib.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
from tools.build_api import get_mbed_official_release
1818
from tools.targets import TARGET_MAP
1919
from tools.export import EXPORTERS
20+
from tools.project import EXPORTER_ALIASES
2021
from tools.toolchains import TOOLCHAINS
2122

2223
SUPPORTED_TOOLCHAINS = list(TOOLCHAINS - set(u'uARM'))
23-
SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() if exp != "cmsis" and exp != "zip"]
24+
SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() + EXPORTER_ALIASES.keys()
25+
if exp != "cmsis" and exp != "zip"]
2426

2527

2628
def print_list(lst):

0 commit comments

Comments
 (0)