From a7752a4540958a3233f4754fb06986dcacb865b0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 4 Apr 2014 17:28:34 +0300 Subject: [PATCH] run-tests: Elaborate python3 command override capabilities. --- tests/run-tests | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/run-tests b/tests/run-tests index 5be8192971..22ddbe58ed 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -5,8 +5,11 @@ import subprocess import sys from glob import glob +# Tests require at least CPython 3.3. If your default python3 executable +# is of lower version, you can point MICROPY_CPYTHON3 environment var +# to the correct executable. if os.name == 'nt': - CPYTHON3 = 'python3.exe' + CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe') MP_PY = '../windows/micropython.exe' else: CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')