run-tests: Allow to override python3 command to use via environment var.
This commit is contained in:
parent
c61ce96590
commit
34e1199b3a
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue