This commit is contained in:
2025-05-13 00:18:04 -04:00
parent e999ad5e1c
commit 87a56ac40b
37 changed files with 428 additions and 253 deletions

View File

@ -33,7 +33,7 @@ async def test_process_action_executes_correctly():
assert result == 5
unpickleable = lambda x: x + 1
unpickleable = lambda x: x + 1 # noqa: E731
@pytest.mark.asyncio

View File

@ -35,8 +35,8 @@ def test_bootstrap_no_config():
sys_path_before = list(sys.path)
bootstrap_path = bootstrap()
assert bootstrap_path is None
sys.path = sys_path_before
assert str(Path.cwd()) not in sys.path
assert sys.path == sys_path_before
# assert str(Path.cwd()) not in sys.path
def test_bootstrap_with_global_config():

View File

@ -1,11 +1,7 @@
import asyncio
import pytest
from falyx.action import Action, ActionGroup, ChainedAction, FallbackAction
from falyx.context import ExecutionContext
from falyx.execution_registry import ExecutionRegistry as er
from falyx.hook_manager import HookType
# --- Fixtures ---