From 1ac1ee6fcb53751ae10f1b74f0fd8c51e15b5d50 Mon Sep 17 00:00:00 2001 From: AdamEr8 Date: Thu, 21 Jun 2018 12:09:56 +0300 Subject: [PATCH] Fixed text description above skipif's example @pytest.mark.skipif's example's description (above the code) was the opposite of the condition in the code, fixed the description to match the code. --- 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 bfa6f3e75..e1c348c08 100644 --- a/doc/en/skipping.rst +++ b/doc/en/skipping.rst @@ -80,7 +80,7 @@ during import time. If you wish to skip something conditionally then you can use ``skipif`` instead. Here is an example of marking a test function to be skipped -when run on a Python3.6 interpreter:: +when run on an interpreter earlier than Python3.6 :: import sys @pytest.mark.skipif(sys.version_info < (3,6),