tests/run-internalbench.py: Remove old CPython reference.
At one point it was possible to internal_bench CPython vs MicroPython, but seemingly not any more. Signed-off-by: Angus Gratton <angus@redyak.com.au>
This commit is contained in:
parent
dd8a69b5f2
commit
b461d218d1
|
@ -8,16 +8,11 @@ import re
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
# 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":
|
if os.name == "nt":
|
||||||
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3.exe")
|
|
||||||
MICROPYTHON = os.getenv(
|
MICROPYTHON = os.getenv(
|
||||||
"MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe"
|
"MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
|
|
||||||
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")
|
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue