diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-12 00:57:03 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-12 00:58:07 +0200 |
commit | 1ca28bd570e1d4b905a281d276fb822df35833da (patch) | |
tree | 6ff865fee1454525f47cb268c3fe87a9a0a5e793 | |
parent | dbc78543550089cc60b8df84dd88502257e01bc7 (diff) | |
download | micropython-1ca28bd570e1d4b905a281d276fb822df35833da.tar.gz micropython-1ca28bd570e1d4b905a281d276fb822df35833da.zip |
run-tests: Reset MICROPYPATH, to make sure tests use only builtin modules.
-rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 5a486565d5..b31758316b 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -19,6 +19,7 @@ else: # Set PYTHONIOENCODING so that CPython will use utf-8 on systems which set another encoding in the locale os.environ['PYTHONIOENCODING'] = 'utf-8' +os.environ['MICROPYPATH'] = '' def rm_f(fname): if os.path.exists(fname): |