From 1034d9acc84317b21b953d3e9fd6ad5519d1c570 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Wed, 22 Feb 2017 15:50:58 +1100
Subject: [PATCH] tools/gen-cpydiff.py: Set the Python import path to find test
 modules.

---
 tools/gen-cpydiff.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/gen-cpydiff.py b/tools/gen-cpydiff.py
index 6f83bb6e8..93c8e3719 100644
--- a/tools/gen-cpydiff.py
+++ b/tools/gen-cpydiff.py
@@ -203,8 +203,9 @@ def gen_rst(results):
 def main():
     """ Main function """
 
-    # clear search path to make sure tests use only builtin modules
-    os.environ['MICROPYPATH'] = ''
+    # set search path so that test scripts find the test modules (and no other ones)
+    os.environ['PYTHONPATH'] = TESTPATH
+    os.environ['MICROPYPATH'] = TESTPATH
 
     files = readfiles()
     results = run_tests(files)
-- 
GitLab