diff --git a/changelog/3845.trivial.rst b/changelog/3845.trivial.rst new file mode 100644 index 00000000000..29c45ab56f2 --- /dev/null +++ b/changelog/3845.trivial.rst @@ -0,0 +1,2 @@ +Remove a reference to issue `#568 `_ from the documentation, which has since been +fixed. diff --git a/doc/en/skipping.rst b/doc/en/skipping.rst index cda67554d58..efdf008fb69 100644 --- a/doc/en/skipping.rst +++ b/doc/en/skipping.rst @@ -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 `_ - 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: