From 399ca688c8f1c1eb3fab5707fd1583d7d5860718 Mon Sep 17 00:00:00 2001 From: Fabrice Reix Date: Sat, 6 Feb 2021 18:01:30 +0100 Subject: [PATCH] Do not run flask in debug mode anymore It might solve the import issue with the form_param.py test ImportError: cannot import name 'attach_enctype_error_multidict' from partially initialized module 'flask.debughelpers' (most likely due to a circular import) (/usr/local/lib/python3.9/site-packages/flask/debughelpers.py) --- integration/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/server.py b/integration/server.py index 7e80ce761..b808745b3 100644 --- a/integration/server.py +++ b/integration/server.py @@ -1,4 +1,4 @@ from tests import app if __name__ == '__main__': - app.run(debug=True, host='0.0.0.0', port=8000) + app.run(host='0.0.0.0', port=8000)