Enables custom hooks for Vedro, allowing actions on events like startup, scenario execution, and cleanup
Project description
Vedro Hooks
vedro-hooks is a plugin for the Vedro testing framework that allows you to attach custom hooks to various testing events, such as startup, scenario execution, and cleanup. This enables you to perform specific actions automatically at different stages of the testing lifecycle.
Installation
To install vedro-hooks, you can use the vedro plugin install command:
$ vedro plugin install vedro-hooks
Ensure you have Vedro already installed in your environment. If not, you can install it using pip:
$ pip install vedro
Usage
You can register your custom hooks anywhere in your project; however, it is recommended to register them in the vedro.cfg.py file to keep your configuration centralized and easy to locate. Below is an example setup:
from vedro.events import CleanupEvent, ScenarioRunEvent, StartupEvent
from vedro_hooks import on_cleanup, on_scenario_run, on_startup
@on_startup
def my_startup_hook(event: StartupEvent):
print("Testing started!")
@on_scenario_run
def my_scenario_run_hook(event: ScenarioRunEvent):
scenario = event.scenario_result.scenario
print(f"Running scenario: {scenario.subject}")
@on_cleanup
def my_cleanup_hook(event: CleanupEvent):
print("Testing finished!")
...
Sync and Async Hooks
vedro-hooks supports both synchronous and asynchronous hooks, allowing you to handle events in the way that best suits your needs:
- Sync Hook Example
@on_scenario_passed def my_sync_hook(event): scenario = event.scenario_result.scenario print(f"Scenario passed: {scenario.subject}")
- Async Hook Example
@on_scenario_failed async def my_async_hook(event): scenario = event.scenario_result.scenario print(f"Scenario failed: {scenario.subject}")
Available Decorators
@on_startup: Register a function to be executed when the testing process starts.@on_scenario_run: Register a function to be executed when a scenario starts running.@on_scenario_passed: Register a function to be executed when a scenario passes.@on_scenario_failed: Register a function to be executed when a scenario fails.@on_scenario_skipped: Register a function to be executed when a scenario is skipped.@on_scenario_reported: Register a function to be executed when a scenario is reported.@on_cleanup: Register a function to be executed when the testing process ends.
For more detailed information about the events these decorators can hook into, you can refer to the Vedro Plugin Guide.
Configuration
The VedroHooksPlugin can be configured using the following options in your vedro.cfg.py:
show_hooks: When set toTrue, a summary of all registered hooks will be displayed at the end of the testing process.ignore_errors: When set toTrue, the plugin will ignore any errors that occur within the hooks and continue the test execution. Errors encountered will be logged and summarized at the end of the testing process.
import vedro
import vedro_hooks
class Config(vedro.Config):
class Plugins(vedro.Config.Plugins):
class VedroHooks(vedro_hooks.VedroHooks):
ignore_errors = True
show_hooks = True
Command-Line Arguments
-
--hooks-show:
When enabled, after the testing process completes, a summary of all registered hooks along with their source locations will be displayed. This is useful for debugging and verifying which hooks are active. -
--hooks-ignore-errors:
When enabled, any exceptions raised within your hooks will be caught and logged without interrupting the entire test run. This ensures that one failing hook does not prevent the execution of subsequent tests or hooks.
These CLI arguments take precedence over the configuration specified in vedro.cfg.py.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vedro_hooks-0.3.0.tar.gz.
File metadata
- Download URL: vedro_hooks-0.3.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d4ea72a0b676d3e8f1d14137cf2996b695755010c6238d260a1c0bc95adb483
|
|
| MD5 |
3fa1f1f4a6efcf25d6024e7c07131a20
|
|
| BLAKE2b-256 |
464cfab60c86301190823414758517cefad1e364337bf8fed7f82c1b9ef8b40c
|
File details
Details for the file vedro_hooks-0.3.0-py3-none-any.whl.
File metadata
- Download URL: vedro_hooks-0.3.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe9252decb039a3a91187b6c0a1061d98971c450628b254f65f6ed90f287a6c2
|
|
| MD5 |
9a2d6d3454992908fdd373036a809b9a
|
|
| BLAKE2b-256 |
ee2ecc72428ab0036725c6be69be060086743206a9e45a69d2097908b59fd02e
|