From 4970f6d5c2303985934875b510dda2e85c4b77da Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 22 Jun 2018 09:14:12 -0300 Subject: [PATCH] Improve reason in skipif example --- doc/en/skipping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): ...