diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-03 22:06:35 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-03 22:09:12 +0300 |
commit | 34e1199b3a42ede0ec426b43fd24257f7736f979 (patch) | |
tree | 9f6fca2ec1b0c8853db2de5b66b2eb6ff434424c | |
parent | c61ce965909d1005e8ea45f40320aa5545cad522 (diff) |
run-tests: Allow to override python3 command to use via environment var.
-rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests index 834f1f930..86b7d14e1 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -9,7 +9,7 @@ if os.name == 'nt': CPYTHON3 = 'python3.exe' MP_PY = '../windows/micropython.exe' else: - CPYTHON3 = 'python3' + CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3') MP_PY = '../unix/micropython' def rm_f(fname): |