"""Keep the productive module namespace deterministic during the mixed AA suite."""
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
# Import before tests that prepend historical AA worktrees. Those tests use
# ``import publish_ready`` and should exercise the current productive module.
import publish_ready # noqa: F401,E402