Linting
This commit is contained in:
@ -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
|
||||
|
@ -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():
|
||||
|
@ -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 ---
|
||||
|
||||
|
Reference in New Issue
Block a user