hurl/integration/server.py
Fabrice Reix 399ca688c8 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)
2021-02-06 18:01:53 +01:00

5 lines
89 B
Python

from tests import app
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8000)