run-tests: Allow to override python3 command to use via environment var.

This commit is contained in:
Paul Sokolovsky 2014-04-03 22:06:35 +03:00
parent c61ce96590
commit 34e1199b3a
1 changed files with 1 additions and 1 deletions

View File

@ -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):