From 410f1317ab08b582e75c9eca4148c9ac4eff8af5 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:25:27 -0700 Subject: [PATCH] action test --- tools/efrotools/snippets.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/efrotools/snippets.py b/tools/efrotools/snippets.py index e2a6c013..67a37a63 100644 --- a/tools/efrotools/snippets.py +++ b/tools/efrotools/snippets.py @@ -449,6 +449,9 @@ 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: