run-tests: Elaborate python3 command override capabilities.

pull/427/head
Paul Sokolovsky 2014-04-04 17:28:34 +03:00
rodzic e8208a7f02
commit a7752a4540
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

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