Contains the API for end users as well as helper functions and classes to build Allure adapters for Python test frameworks
Overall
score
94%
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
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