action test

This commit is contained in:
Eric Froemling 2020-03-26 19:20:33 -07:00
parent 15fc842ee5
commit 99e60a8da2
2 changed files with 3 additions and 4 deletions

View File

@ -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:

View File

@ -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: