tessl install tessl/pypi-allure-python-commons@2.15.0Contains the API for end users as well as helper functions and classes to build Allure adapters for Python test frameworks
Agent Success
Agent success rate when using this tile
94%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.27x
Baseline
Agent success rate without this tile
74%
A utility that enhances test reports by documenting test parameters with different visibility levels.
Create a function that records test parameters for reporting purposes with different visibility levels.
Test cases:
@generates
def record_test_parameters(username: str, password: str, api_endpoint: str, internal_debug_flag: bool) -> None:
"""
Records test parameters for documentation in test reports.
Args:
username: The username for the test (visible in report)
password: The password for the test (should be masked in report)
api_endpoint: The API endpoint being tested (visible in report)
internal_debug_flag: Internal debugging flag (should be hidden from report)
"""
passProvides test reporting and parameter management capabilities.
@satisfied-by