"""Behave environment for the cleveractors-core test suite. Imports nothing fancy — the library is pure-Python, no DB/HTTP setup needed before tests run. """ from __future__ import annotations from typing import Any def before_all(context: Any) -> None: """Hook invoked once before any features run.""" def before_scenario(context: Any, scenario: Any) -> None: """Per-scenario reset of any context state."""