diff --git a/tests/conftest.py b/tests/conftest.py index 25d3dc6..7956f27 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -7,10 +7,12 @@ def app(): 'TESTING': True }) + yield app + @pytest.fixture def client(app): return app.test_client() @pytest.fixture def runner(app): - return app.test_cli_runner() \ No newline at end of file + return app.test_cli_runner()