nixpkgs/pkgs/tools/misc/nanoemoji/test-pythonpath.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
731 B
Diff
Raw Normal View History

2023-07-17 21:17:41 +02:00
--- a/tests/test_helper.py
+++ b/tests/test_helper.py
@@ -269,9 +269,9 @@
print("subprocess:", " ".join(cmd)) # very useful on failure
env = {
# We may need to find nanoemoji and other pip-installed cli tools
- "PATH": str(Path(shutil.which("nanoemoji")).parent),
+ "PATH": str(Path(shutil.which("nanoemoji")).parent) + ":" + os.environ["PATH"],
# We may need to find test modules
- "PYTHONPATH": os.pathsep.join((str(Path(__file__).parent),)),
+ "PYTHONPATH": os.pathsep.join((str(Path(__file__).parent),)) + ":" + os.environ["PYTHONPATH"],
}
# Needed for windows CI to function; ref https://github.com/appveyor/ci/issues/1995
if "SYSTEMROOT" in os.environ: