Skip to content
Snippets Groups Projects
Commit bbc45c63 authored by Joshua Carp's avatar Joshua Carp
Browse files

Deprecate pytest yield fixtures.

https://docs.pytest.org/en/latest/yieldfixture.html
parent bf92a49f
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ from {{cookiecutter.app_name}}.settings import TestConfig
from .factories import UserFactory
@pytest.yield_fixture(scope='function')
@pytest.fixture
def app():
"""An application for the tests."""
_app = create_app(TestConfig)
......@@ -23,13 +23,13 @@ def app():
ctx.pop()
@pytest.fixture(scope='function')
@pytest.fixture
def testapp(app):
"""A Webtest app."""
return TestApp(app)
@pytest.yield_fixture(scope='function')
@pytest.fixture
def db(app):
"""A database for the tests."""
_db.app = app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment