Metadata-Version: 2.4
Name: pytest-progress
Version: 1.4.0
Summary: pytest plugin for instant test progress status
Home-page: https://github.com/ssrikanta/pytest-progress
Author: santosh
Author-email: Santosh Srikanta <santosh.srikanta@gmail.com>
License: MIT License
        
        Copyright (c) 2020 santosh
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/ssrikanta/pytest-progress
Project-URL: Repository, https://github.com/ssrikanta/pytest-progress
Project-URL: Issues, https://github.com/ssrikanta/pytest-progress/issues
Keywords: py.test,pytest,report
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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 :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: pytest>=6.0
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

pytest-progress
================


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 3.8, 3.9, 3.10, 3.11 and 3.12
- pytest



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


Examples
------------
To run the pytest with progress::

	$ py.test --show-progress test_progress_report.py
	$ py.test --showprogress test_progress_report.py
	
To run tests in verbose mode::

	$ py.test --show-progress --verbose test_progress_report.py
	$ py.test --showprogress --verbose test_progress_report.py
