Remove warning about #568 from documentation

The documentation (https://docs.pytest.org/en/latest/skipping.html) references
issue #568, which has since been fixed.
This commit is contained in:
Natan Lao 2018-08-21 16:57:33 -07:00 committed by GitHub
parent f1079a8222
commit 717775a1c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -136,12 +136,6 @@ You can use the ``skipif`` marker (as any other marker) on classes::
If the condition is ``True``, this marker will produce a skip result for
each of the test methods of that class.
.. warning::
The use of ``skipif`` on classes that use inheritance is strongly
discouraged. `A Known bug <https://github.com/pytest-dev/pytest/issues/568>`_
in pytest's markers may cause unexpected behavior in super classes.
If you want to skip all test functions of a module, you may use
the ``pytestmark`` name on the global level: