From 6ca17bcfb6a719a625ed76f0354bed7ed014d136 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Wed, 16 Apr 2014 21:17:28 +0100 Subject: [PATCH] Stupid typo --- tests/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'])