diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 1fc857601..0cfd50f5c 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -258,6 +258,8 @@ def run_micropython(pyb, args, test_file, is_special=False): cmdlist = [MICROPYTHON, "-X", "emit=" + args.emit] if args.heapsize is not None: cmdlist.extend(["-X", "heapsize=" + args.heapsize]) + if sys.platform == "darwin": + cmdlist.extend(["-X", "realtime"]) # if running via .mpy, first compile the .py file if args.via_mpy: |
