Fixture-Defining Decorators

ornithology.config(*args, params=None)[source]

Marks a function as a config fixture. Config is always performed before any standup() or action() fixtures are run.

Parameters:

params (Optional[Mapping[str, Any]]) –

ornithology.standup(*args)[source]

Marks a function as a standup fixture. Standup is always performed after all config() fixtures have run, and before any action() fixtures that depend on it.

ornithology.action(*args, params=None)[source]

Marks a function as an action fixture. Actions are always performed after all standup() fixtures have run, and before any tests that depend on them.

Parameters:

params (Optional[Mapping[str, Any]]) –