diff options
| author | Damien George | 2020-03-10 02:58:47 +1100 |
|---|---|---|
| committer | Damien George | 2020-03-26 01:25:45 +1100 |
| commit | 18fa65e47402d85c53361798046e306d2cf4bac1 (patch) | |
| tree | 84c0d14c266ebcf78800ba4cc715bd8e3e2140a8 /tests/run-tests | |
| parent | 3667effff1d82f4e16b2843ae292ce7b86926b6b (diff) | |
tests: Make default MICROPYPATH include extmod to find uasyncio.
Diffstat (limited to 'tests/run-tests')
| -rwxr-xr-x | tests/run-tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-tests b/tests/run-tests index df55a4e9e..e34c2531f 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -628,8 +628,8 @@ the last matching regex is used: tests = args.files if not args.keep_path: - # clear search path to make sure tests use only builtin modules - os.environ['MICROPYPATH'] = '' + # clear search path to make sure tests use only builtin modules and those in extmod + os.environ['MICROPYPATH'] = os.pathsep + '../extmod' # Even if we run completely different tests in a different directory, # we need to access feature_check's from the same directory as the |
