summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rwxr-xr-xtests/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 49be9dae2b..52fdd11b25 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -13,7 +13,7 @@ if os.name == 'nt':
MP_PY = os.getenv('MICROPY_MP_PY', '../windows/micropython.exe')
else:
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
- MP_PY = ('MICROPY_MP_PY', '../unix/micropython')
+ MP_PY = os.getenv('MICROPY_MP_PY', '../unix/micropython')
# Set of tests that we shouldn't run under Travis CI
skip_travis_tests = set(['basics/memoryerror.py'])