Skip to content

Commit d964873

Browse files
committed
tests/run-tests: Fix logic when selecting test-dirs for a given target.
1 parent ce3beb1 commit d964873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def main():
363363
if args.target == 'pyboard':
364364
# run pyboard tests
365365
test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod', 'pyb', 'pybnative', 'inlineasm')
366-
if args.target == 'esp8266':
366+
elif args.target == 'esp8266':
367367
test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod')
368368
elif args.target == 'wipy':
369369
# run WiPy tests

0 commit comments

Comments
 (0)