From 311c17a4b178984433ee528046435d192d07c405 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:26:45 -0700 Subject: [PATCH] action test --- tools/efrotools/snippets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/efrotools/snippets.py b/tools/efrotools/snippets.py index 67a37a63..9d0a6b03 100644 --- a/tools/efrotools/snippets.py +++ b/tools/efrotools/snippets.py @@ -449,9 +449,6 @@ def pytest() -> None: print('PATH IS', sys.path) print('CWD IS', os.getcwd()) - subprocess.run([PYTHON_BIN, '-c', 'import sys; print("FOOO", sys.path)'], - check=True) - # Grab our python paths for the project and stuff them in PYTHONPATH. pypaths = get_config(PROJROOT).get('python_paths') if pypaths is None: @@ -463,6 +460,9 @@ def pytest() -> None: ] os.environ['PYTHONPATH'] = ':'.join(pypaths) + subprocess.run([PYTHON_BIN, '-c', 'import sys; print("FOOO", sys.path)'], + check=True) + print('SET VAL TO', ':'.join(pypaths), flush=True) # Also tell Python interpreters not to write __pycache__ dirs everywhere