Metadata-Version: 2.1
Name: pytest-bug
Version: 0.3.1
Summary: Pytest plugin Mark test as a bug
Home-page: https://github.com/tolstislon/pytest-bug
Author: tolstislon
Author-email: tolstislon@gmail.com
License: MIT License
Keywords: pytest
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.6
Requires-Dist: pytest (>=3.6.0)


pytest-bug
==========


.. image:: https://img.shields.io/pypi/v/pytest-bug.svg?color=yellow&label=version
   :target: https://img.shields.io/pypi/v/pytest-bug.svg?color=yellow&label=version
   :alt: PyPI


.. image:: https://travis-ci.com/tolstislon/pytest-bug.svg?branch=master
   :target: https://travis-ci.com/tolstislon/pytest-bug
   :alt: Build Status


.. image:: https://img.shields.io/pypi/pyversions/pytest-bug.svg
   :target: https://img.shields.io/pypi/pyversions/pytest-bug.svg
   :alt: PyPI - Python Version


.. image:: https://img.shields.io/badge/pytest-%3E%3D3.6.0-blue.svg
   :target: https://img.shields.io/badge/pytest-%3E%3D3.6.0-blue.svg
   :alt: pytes_support


.. image:: https://pepy.tech/badge/pytest-bug
   :target: https://pepy.tech/project/pytest-pytestrail
   :alt: Downloads


.. code-block:: python

   import pytest

   @pytest.mark.bug('fail not calling exit code', run=True)
   def test_one():
       assert False

or

.. code-block:: python

   from pytest_bug import bug

   @bug('fail not calling exit code', run=True)
   def test_one():
       assert False


