We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8208a7 commit a7752a4Copy full SHA for a7752a4
1 file changed
tests/run-tests
@@ -5,8 +5,11 @@ import subprocess
5
import sys
6
from glob import glob
7
8
+# Tests require at least CPython 3.3. If your default python3 executable
9
+# is of lower version, you can point MICROPY_CPYTHON3 environment var
10
+# to the correct executable.
11
if os.name == 'nt':
- CPYTHON3 = 'python3.exe'
12
+ CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe')
13
MP_PY = '../windows/micropython.exe'
14
else:
15
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
0 commit comments