From 3b835ae0a9b05161191a835168582c3332e66403 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Fri, 15 Apr 2022 03:34:40 +0000 Subject: [PATCH] Update conftest.py --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()