Metadata-Version: 1.1
Name: pytest-info-collector
Version: 0.2
Summary: pytest plugin to collect information from tests
Home-page: https://pytest-info-collector.readthedocs.io
Author: James Tocknell
Author-email: aragilar@gmail.com
License: 3-clause BSD
Description: `pytest_info_collector` is a plugin for pytest providing a fixture for collecting
        information from tests and displaying it, independent of the test status.
        
        A simple example of this is:
        
        ::
        
            def test_single(test_info):
                test_info("A simple test")
        
        which would display "A simple test" at the end of the tests. Further
        documentation can be found at `<https://pytest-info-collector.readthedocs.io>`_.
        
        Bug reports and suggestions should be filed at
        `<https://github.com/aragilar/pytest-info-collector/issues>`_.
        
        
        |Documentation Status| |Build Status| |Coverage Status|
        
        .. |Documentation Status| image:: https://readthedocs.org/projects/pytest-info-collector/badge/?version=latest
           :target: http://pytest-info-collector.readthedocs.org/en/latest/?badge=latest
        .. |Build Status| image:: https://travis-ci.org/aragilar/pytest-info-collector.svg?branch=master
           :target: https://travis-ci.org/aragilar/pytest-info-collector
        .. |Coverage Status| image:: https://codecov.io/github/aragilar/pytest-info-collector/coverage.svg?branch=master
           :target: https://codecov.io/github/aragilar/pytest-info-collector?branch=master
        
Keywords: pytest testing
Platform: UNKNOWN
Classifier: Framework :: Pytest
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
