You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
run-tests: Allow to override python3 command to use via environment var.
This commit is contained in:
+1
-1
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user