From 99e60a8da28ec3140d7c5d39e6acf3d73ab822f2 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:20:33 -0700 Subject: [PATCH] action test --- tests/test_ba/test_assetmanager.py | 4 ---- tools/efrotools/snippets.py | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/test_ba/test_assetmanager.py b/tests/test_ba/test_assetmanager.py index d2135577..133dcc9b 100644 --- a/tests/test_ba/test_assetmanager.py +++ b/tests/test_ba/test_assetmanager.py @@ -39,10 +39,6 @@ if TYPE_CHECKING: def test_assetmanager() -> None: """Testing.""" - import sys - import os - print('PATH IS', sys.path) - print('CWD IS', os.getcwd()) with tempfile.TemporaryDirectory() as tmpdir: diff --git a/tools/efrotools/snippets.py b/tools/efrotools/snippets.py index 313f1788..8ac3d9f6 100644 --- a/tools/efrotools/snippets.py +++ b/tools/efrotools/snippets.py @@ -446,6 +446,9 @@ 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: