Skip to content

Commit 5eb198c

Browse files
aykevldpgeorge
authored andcommitted
tests/run-tests: Support esp32 as a target for running the test suite.
1 parent 89b1c4a commit 5eb198c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/run-tests

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ the last matching regex is used:
516516
cmd_parser.add_argument('files', nargs='*', help='input test files')
517517
args = cmd_parser.parse_args()
518518

519-
EXTERNAL_TARGETS = ('pyboard', 'wipy', 'esp8266', 'minimal')
519+
EXTERNAL_TARGETS = ('pyboard', 'wipy', 'esp8266', 'esp32', 'minimal')
520520
if args.target == 'unix' or args.list_tests:
521521
pyb = None
522522
elif args.target in EXTERNAL_TARGETS:
@@ -531,7 +531,7 @@ the last matching regex is used:
531531
if args.target == 'pyboard':
532532
# run pyboard tests
533533
test_dirs = ('basics', 'micropython', 'float', 'misc', 'stress', 'extmod', 'pyb', 'pybnative', 'inlineasm')
534-
elif args.target in ('esp8266', 'minimal'):
534+
elif args.target in ('esp8266', 'esp32', 'minimal'):
535535
test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod')
536536
elif args.target == 'wipy':
537537
# run WiPy tests

0 commit comments

Comments
 (0)