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 allure-python-commons attachment functions to capture and attach various artifacts to test reports. The focus is exclusively on correct usage of allure.attach() and allure.attach.file() with appropriate attachment types.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Text attachment",
"description": "Uses allure.attach() with allure.attachment_type.TEXT (or equivalent string 'text') to attach text log content",
"max_score": 25
},
{
"name": "JSON attachment",
"description": "Uses allure.attach() with allure.attachment_type.JSON to attach JSON data, properly serializing the dictionary using json.dumps() or similar",
"max_score": 25
},
{
"name": "Image file attachment",
"description": "Uses allure.attach.file() with allure.attachment_type.PNG (or appropriate image type) to attach the screenshot file from disk",
"max_score": 25
},
{
"name": "HTML attachment",
"description": "Uses allure.attach() with allure.attachment_type.HTML to attach HTML content",
"max_score": 25
}
]
}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