Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/e2e/features/steps/common.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
"""Implementation of common test steps."""

from behave import given
from behave import given # pyright: ignore[reportAttributeAccessIssue]
from behave.runner import Context


@given("the service is started locally")
def service_is_started_locally(context: Context) -> None:
"""Check the service status."""
pass
assert context is not None


@given("the system is in default state")
def system_in_default_state(context: Context) -> None:
"""Check the default system state."""
pass
assert context is not None