Metadata-Version: 1.2
Name: pytest-html-reporter
Version: 0.1.6
Summary: Generates a static html report based on pytest framework
Home-page: https://github.com/prashanth-sams/pytest-html-reporter
Author: Prashanth Sams
Author-email: sams.prashanth@gmail.com
Maintainer: Prashanth Sams
Maintainer-email: sams.prashanth@gmail.com
License: MIT
Description: =====================
        pytest-html-reporter
        =====================
        
        .. image:: https://badges.gitter.im/prashanth-sams/pytest-html-reporter.svg
           :alt: Join the chat at https://gitter.im/prashanth-sams/pytest-html-reporter
           :target: https://gitter.im/prashanth-sams/pytest-html-reporter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
        
        .. image:: https://badge.fury.io/py/pytest-html-reporter.svg
            :target: https://badge.fury.io/py/pytest-html-reporter
            :alt: PyPI version
        
        .. image:: https://travis-ci.com/prashanth-sams/pytest-html-reporter.svg?branch=master
            :target: https://travis-ci.com/prashanth-sams/pytest-html-reporter
            :alt: Build Status
        
        .. image:: https://pepy.tech/badge/pytest-html-reporter
            :target: https://pepy.tech/project/pytest-html-reporter
            :alt: Downloads
        
        
        ..
        
                Generates a static html report based on ``pytest`` framework
        
        
        .. image:: https://i.imgur.com/4TYia5j.png
           :alt: pytest-html-reporter
        
        Features
        ------------
        - Generic information
            - Overview
            - Trends
            - Suite Highlights
            - Test suite details
        - Archives / History
        - Test Rerun support
        
        Installation
        ------------
        
        .. code-block:: console
        
            $ pip install pytest-html-reporter
        
        
        Usage
        ------------
        
        By default, the filename used is ``pytest_html_reporter.html`` and path chosen is ``report``; you can skip both or
        either one of them if not needed::
        
            $ pytest tests/
        
        
        ..
        
                Custom path and filename
        
        Add ``--html`` tag followed by path location and filename to customize the report location and filename::
        
            $ pytest tests/ --html=./report
            $ pytest tests/ --html=./report/report.html
        
        ..
        
                pytest.ini
        
        Alternate option is to add this snippet in the ``pytest.ini`` file::
        
            [pytest]
            addopts = -vs -rf --html=./report
        
        **Note:** If you fail to provide ``--html`` tag, it consider your project's home directory as the base
        
        .. image:: https://i.imgur.com/yteLaRL.png
            :align: center
            :alt: pytest-html-reporter-overview
        
        |
        
        .. image:: https://i.imgur.com/ge6OCM6.gif
        
        
        Is there a demo available for this gem?
        ------------------------------------------------
        
        Yes, you can use this demo as an example, https://github.com/prashanth-sams/pytest-html-reporter::
        
            $ pytest tests/
Keywords: pytest,py.test,html,reporter,report
Platform: UNKNOWN
Classifier: Framework :: Pytest
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
