1 --- a/tests/test_helper.py
2 +++ b/tests/test_helper.py
4 print("subprocess:", " ".join(cmd)) # very useful on failure
6 # We may need to find nanoemoji and other pip-installed cli tools
7 - "PATH": str(Path(shutil.which("nanoemoji")).parent),
8 + "PATH": str(Path(shutil.which("nanoemoji")).parent) + ":" + os.environ["PATH"],
9 # We may need to find test modules
10 - "PYTHONPATH": os.pathsep.join((str(Path(__file__).parent),)),
11 + "PYTHONPATH": os.pathsep.join((str(Path(__file__).parent),)) + ":" + os.environ["PYTHONPATH"],
13 # Needed for windows CI to function; ref https://github.com/appveyor/ci/issues/1995
14 if "SYSTEMROOT" in os.environ: