Use https, save a redirect

This commit is contained in:
Steve Piercy 2018-08-28 14:39:32 -07:00
parent e040fd20a3
commit 67c3c28877
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ def pytest_configure(config):
"results in a True value. Evaluation happens within the "
"module global context. Example: skipif('sys.platform == \"win32\"') "
"skips the test if we are on the win32 platform. see "
"http://pytest.org/latest/skipping.html",
"https://docs.pytest.org/en/latest/skipping.html",
)
config.addinivalue_line(
"markers",
@ -61,7 +61,7 @@ def pytest_configure(config):
"and run=False if you don't even want to execute the test function. "
"If only specific exception(s) are expected, you can list them in "
"raises, and if the test fails in other ways, it will be reported as "
"a true failure. See http://pytest.org/latest/skipping.html",
"a true failure. See https://docs.pytest.org/en/latest/skipping.html",
)