Skip to content

Commit 1f90629

Browse files
committed
Use debug mode in tests
1 parent 98e8779 commit 1f90629

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ def items(self):
1717

1818
@pytest.fixture
1919
def app():
20-
return flask.Flask(__name__)
20+
app_ = flask.Flask(__name__)
21+
app_.debug = True
22+
return app_
2123

2224
@pytest.fixture
2325
def client(app):

0 commit comments

Comments
 (0)