Contains the API for end users as well as helper functions and classes to build Allure adapters for Python test frameworks
Overall
score
94%
{
"context": "This criteria evaluates how well the engineer uses the allure-python-commons plugin system and hooks to build a custom reporting plugin. It focuses on proper hook implementation, plugin registration, and understanding of the plugin architecture.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Plugin Registration",
"description": "Uses plugin_manager.register() to register the custom plugin instance with the allure plugin system",
"max_score": 15
},
{
"name": "Hook Implementation Decorator",
"description": "Uses @hookimpl decorator from allure_commons._hooks to mark hook implementation methods",
"max_score": 15
},
{
"name": "Description Hook",
"description": "Implements add_description hook to intercept and modify test descriptions by adding timestamp prefix",
"max_score": 20
},
{
"name": "Step Start Hook",
"description": "Implements start_step hook to track test step execution with parameters uuid, title, and params",
"max_score": 20
},
{
"name": "File Attachment Hook",
"description": "Implements attach_file hook to intercept file attachments with parameters source, name, attachment_type, and extension",
"max_score": 20
},
{
"name": "Modified Return Values",
"description": "Returns modified values from hooks (e.g., modified description from add_description, modified title from start_step) to affect the reporting behavior",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-allure-python-commonsevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10