diff --git a/doc/en/skipping.rst b/doc/en/skipping.rst index e1c348c08..cda67554d 100644 --- a/doc/en/skipping.rst +++ b/doc/en/skipping.rst @@ -84,7 +84,7 @@ when run on an interpreter earlier than Python3.6 :: import sys @pytest.mark.skipif(sys.version_info < (3,6), - reason="requires python3.6") + reason="requires python3.6 or higher") def test_function(): ...