Improve reason in skipif example

This commit is contained in:
Bruno Oliveira
2018-06-22 09:14:12 -03:00
committed by GitHub
parent f883628939
commit 4970f6d5c2

View File

@@ -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():
...