From 0a56f62748d5fa8f0834cdd9ff2c247f7573fa7e Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 12 Mar 2025 13:13:20 -0400 Subject: [PATCH] Mk `tests/__init__.py`, not sure where it went? I must have had a local touched file but never committed or something? Seems that new `pytest` requires a top level `tests` pkg in order for relative `.conftest` imports to work. --- tests/devx/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/devx/conftest.py b/tests/devx/conftest.py index 7992e8c9..c45265dc 100644 --- a/tests/devx/conftest.py +++ b/tests/devx/conftest.py @@ -22,7 +22,7 @@ from tractor.devx._debug import ( _repl_fail_msg as _repl_fail_msg, _ctlc_ignore_header as _ctlc_ignore_header, ) -from conftest import ( +from ..conftest import ( _ci_env, )