Use https, save a redirect

This commit is contained in:
Steve Piercy 2018-08-28 14:38:55 -07:00
parent 00e0b43010
commit e040fd20a3
1 changed files with 4 additions and 3 deletions

View File

@ -173,13 +173,14 @@ def pytest_configure(config):
"or a list of tuples of values if argnames specifies multiple names. " "or a list of tuples of values if argnames specifies multiple names. "
"Example: @parametrize('arg1', [1,2]) would lead to two calls of the " "Example: @parametrize('arg1', [1,2]) would lead to two calls of the "
"decorated test function, one with arg1=1 and another with arg1=2." "decorated test function, one with arg1=1 and another with arg1=2."
"see http://pytest.org/latest/parametrize.html for more info and " "see https://docs.pytest.org/en/latest/parametrize.html for more info "
"examples.", "and examples.",
) )
config.addinivalue_line( config.addinivalue_line(
"markers", "markers",
"usefixtures(fixturename1, fixturename2, ...): mark tests as needing " "usefixtures(fixturename1, fixturename2, ...): mark tests as needing "
"all of the specified fixtures. see http://pytest.org/latest/fixture.html#usefixtures ", "all of the specified fixtures. see "
"https://docs.pytest.org/en/latest/fixture.html#usefixtures ",
) )