Metadata-Version: 1.1
Name: pytest-ignore-flaky
Version: 1.0.0
Summary: ignore failures from flaky tests (pytest plugin)
Home-page: http://pypi.python.org/pypi/pytest-ignore-flaky
Author: Eduardo Naufel Schettino, Marcos Alfredo Camargo Leal Pinto
Author-email: schettino72@gmail.com, marcos.alfredo@gmail.com
License: MIT
Description: ================
        README
        ================
        
        
        pytest-ignore-flaky
        ====================
        
        ignore failures from flaky tests (pytest plugin)
        
        A "flaky" test is a test that usually pass but sometimes it fails.
        You should always avoid flaky tests but not always possible.
        
        This plugin can be used to optionally ignore failures from flaky tests.
        
        First "mark" your tests with the `flaky` marker::
        
          import random
          import pytest
        
          @pytest.mark.flaky
          def test_mf():
              assert 0 == random.randint(0, 1)
        
        By default this mark is just ignored, unless the plugin is activated from the
        command line (or `py.test` config file)::
        
          py.test --ignore-flaky
        
        If a flaky test pass it will be reported normally as test succeed.
        If the test fails, instead of being reported as failure it will be reported as
        a `xfail`.
        
        
        
        
        Project Details
        ===============
        
         - Project code + issue track on github - https://github.com/schettino72/pytest-ignore-flaky
         - PyPI - https://pypi.python.org/pypi/pytest-ignore-flaky
        
        
        license
        =======
        
        The MIT License
        Copyright (c) 2015-2019 Eduardo Naufel Schettino and Marcos Alfredo Camargo Leal Pinto
        
        see LICENSE file
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Testing
