summaryrefslogtreecommitdiff
path: root/tests/run-internalbench.py
diff options
context:
space:
mode:
authorAngus Gratton <angus@redyak.com.au>2023-09-20 18:12:11 +1000
committerDamien George <damien@micropython.org>2023-09-29 15:41:41 +1000
commitb461d218d14cee9b5a1b3d2749ae14cbec1388a2 (patch)
tree98579cc3caefe474e68028ca48a3b8ec859c9348 /tests/run-internalbench.py
parentdd8a69b5f2996800bcd193dbfdc2e3bf0fb52d65 (diff)
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>
Diffstat (limited to 'tests/run-internalbench.py')
-rwxr-xr-xtests/run-internalbench.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/run-internalbench.py b/tests/run-internalbench.py
index 2cf7f3443..c9f783e47 100755
--- a/tests/run-internalbench.py
+++ b/tests/run-internalbench.py
@@ -8,16 +8,11 @@ import re
from glob import glob
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":
- CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3.exe")
MICROPYTHON = os.getenv(
"MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe"
)
else:
- CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")