e828acf175
CI / lint (push) Successful in 1m32s
CI / typecheck (push) Successful in 1m38s
CI / lint (pull_request) Successful in 1m30s
CI / typecheck (pull_request) Successful in 1m30s
CI / behave (3.11) (pull_request) Successful in 1m39s
CI / behave (3.12) (pull_request) Successful in 1m39s
CI / build (pull_request) Successful in 1m29s
CI / behave (3.13) (pull_request) Successful in 1m39s
CI / behave (3.11) (push) Successful in 1m39s
CI / behave (3.12) (push) Successful in 1m41s
CI / behave (3.13) (push) Successful in 1m37s
CI / build (push) Successful in 1m30s
ISSUES CLOSED: #1
12 lines
504 B
Python
12 lines
504 B
Python
"""
|
|
Step definitions package for CleverRDFLib BDD tests.
|
|
|
|
This package contains all step definition modules for the Behave BDD test suite.
|
|
The step definitions are organized by feature area and follow the
|
|
Observer, Factory, Strategy, and other design patterns used in the codebase.
|
|
"""
|
|
|
|
# Import all step definition modules to ensure they are registered with Behave
|
|
# This is necessary for Behave to discover all step definitions
|
|
from features.steps import class_hierarchy_steps_properties # noqa: F401
|