Metadata-Version: 2.0
Name: pytest-progress
Version: 1.0.2
Summary: pytest plugin for instant test progress status
Home-page: https://github.com/ssrikanta/pytest-progress
Author: santosh
Author-email: santosh.srikanta@gmail.com
License: UNKNOWN
Keywords: py.test pytest report
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: pytest (>=2.7)

pytest-excel
================


pytest-progress is a plugin for `py.test <http://pytest.org>`_ that allows to 
print the test progress like number of tests Passed , Failed, Skipped and also 
instant test failure messages.


Requirements
------------

You will need the following prerequisites in order to use pytest-progress:

- Python 2.7, 3.4 or 3.5
- pytest 2.9.0 or newer



Installation
------------

To install pytest-progress::

    $pip install pytest-progress

Then run your tests with::

    $py.test --show-progress

If you would like more detailed output (one test per line), then you may use the verbose option::

    $ py.test --verbose



