Add punctuation to funcarg_prefix_warning
This commit is contained in:
parent
c4f20a1834
commit
15e97a7c78
|
@ -864,11 +864,12 @@ def yield_fixture(scope="function", params=None, autouse=False, ids=None, name=N
|
||||||
else:
|
else:
|
||||||
return FixtureFunctionMarker(scope, params, autouse, ids=ids, name=name)
|
return FixtureFunctionMarker(scope, params, autouse, ids=ids, name=name)
|
||||||
|
|
||||||
defaultfuncargprefixmarker = fixture()
|
|
||||||
funcarg_prefix_warning = '{name}: declaring fixtures using "pytest_funcarg__" prefix is deprecated ' \
|
|
||||||
'and scheduled to be removed in pytest 4.0.\n' \
|
|
||||||
'remove the prefix and use the @pytest.fixture decorator instead'
|
|
||||||
|
|
||||||
|
defaultfuncargprefixmarker = fixture()
|
||||||
|
funcarg_prefix_warning = (
|
||||||
|
'{name}: declaring fixtures using "pytest_funcarg__" prefix is deprecated '
|
||||||
|
'and scheduled to be removed in pytest 4.0.\n'
|
||||||
|
'Please remove the prefix and use the @pytest.fixture decorator instead.')
|
||||||
|
|
||||||
|
|
||||||
@fixture(scope="session")
|
@fixture(scope="session")
|
||||||
|
@ -877,8 +878,6 @@ def pytestconfig(request):
|
||||||
return request.config
|
return request.config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class FixtureManager:
|
class FixtureManager:
|
||||||
"""
|
"""
|
||||||
pytest fixtures definitions and information is stored and managed
|
pytest fixtures definitions and information is stored and managed
|
||||||
|
|
Loading…
Reference in New Issue