We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd8a69b commit b461d21Copy full SHA for b461d21
tests/run-internalbench.py
@@ -8,16 +8,11 @@
8
from glob import glob
9
from collections import defaultdict
10
11
-# Tests require at least CPython 3.3. If your default python3 executable
12
-# is of lower version, you can point MICROPY_CPYTHON3 environment var
13
-# to the correct executable.
14
if os.name == "nt":
15
- CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3.exe")
16
MICROPYTHON = os.getenv(
17
"MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe"
18
)
19
else:
20
- CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
21
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")
22
23
0 commit comments