From 90dfac00c65f38d40993a8ae1b4206042b739542 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:31:46 -0700 Subject: [PATCH] action test --- tools/efrotools/snippets.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tools/efrotools/snippets.py b/tools/efrotools/snippets.py index d9cbb964..d342ce6d 100644 --- a/tools/efrotools/snippets.py +++ b/tools/efrotools/snippets.py @@ -446,9 +446,6 @@ def pytest() -> None: import platform from efrotools import get_config, PYTHON_BIN - print('PATH IS', sys.path) - print('CWD IS', os.getcwd()) - # Grab our python paths for the project and stuff them in PYTHONPATH. pypaths = get_config(PROJROOT).get('python_paths') if pypaths is None: @@ -456,9 +453,9 @@ def pytest() -> None: if platform.system() == 'Windows': sep = ';' - pypaths = [ - os.path.join(os.getcwd(), s.replace('/', '\\')) for s in pypaths - ] + # pypaths = [ + # os.path.join(os.getcwd(), s.replace('/', '\\')) for s in pypaths + # ] else: sep = ':'