{"library":"pytest-custom-report","title":"pytest-custom-report","description":"A pytest plugin to configure the symbols displayed for test outcomes (e.g., . and F). Version 1.0.1 supports pytest 4.2.0+, where xfail was renamed to XFAIL. Low-maintenance library with no recent releases.","language":"python","status":"maintenance","last_verified":"Sat May 09","install":{"commands":["pip install pytest-custom-report"],"cli":null},"imports":["import pytest"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"# conftest.py\nimport pytest\n\ndef pytest_custom_report(short, long):\n    # Customize symbols\n    return {\n        'PASSED': short and '.' or 'PASS',\n        'FAILED': short and 'F' or 'FAIL',\n    }","lang":"python","description":"Define a pytest_custom_report hook in conftest.py to override default symbols.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}