Skip to content

Commit 34e1199

Browse files
committed
run-tests: Allow to override python3 command to use via environment var.
1 parent c61ce96 commit 34e1199

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if os.name == 'nt':
99
CPYTHON3 = 'python3.exe'
1010
MP_PY = '../windows/micropython.exe'
1111
else:
12-
CPYTHON3 = 'python3'
12+
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
1313
MP_PY = '../unix/micropython'
1414

1515
def rm_f(fname):

0 commit comments

Comments
 (0)