diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-04-16 21:17:28 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-04-16 21:17:28 +0100 |
commit | 6ca17bcfb6a719a625ed76f0354bed7ed014d136 (patch) | |
tree | 400b80ca3ceaab812ab6ff48dc348a89bea3616b | |
parent | c297ca33276275645f13b20994b7d445e7b272db (diff) | |
download | micropython-6ca17bcfb6a719a625ed76f0354bed7ed014d136.tar.gz micropython-6ca17bcfb6a719a625ed76f0354bed7ed014d136.zip |
Stupid typo
-rwxr-xr-x | tests/run-tests | 2 |
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']) |