We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 408e291 + 1ab26ba commit b7f8a5aCopy full SHA for b7f8a5a
tests/run-tests.py
@@ -829,6 +829,10 @@ def run_one_test(test_file):
829
"PATH": os.environ["PATH"],
830
"LANG": "en_US.UTF-8",
831
}
832
+ # CIRCUITPY-CHANGE: --keep-path applies to PYTHONPATH as well
833
+ if args.keep_path and os.getenv("PYTHONPATH"):
834
+ e["PYTHONPATH"] += ":" + os.getenv("PYTHONPATH")
835
+
836
# run CPython to work out expected output
837
try:
838
output_expected = subprocess.check_output(
0 commit comments