From 5b8a70fb3327d78485c1ebfc0e84afd48db1f2f1 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:22:20 -0700 Subject: [PATCH] action test --- tools/efrotools/snippets.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/efrotools/snippets.py b/tools/efrotools/snippets.py index 8ac3d9f6..e2a6c013 100644 --- a/tools/efrotools/snippets.py +++ b/tools/efrotools/snippets.py @@ -455,7 +455,9 @@ def pytest() -> None: raise CleanError('python_paths not found in project config.') if platform.system() == 'Windows': - pypaths = [s.replace('/', '\\') for s in pypaths] + pypaths = [ + os.path.join(os.getcwd(), s.replace('/', '\\')) for s in pypaths + ] os.environ['PYTHONPATH'] = ':'.join(pypaths) print('SET VAL TO', ':'.join(pypaths), flush=True)