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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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