Merge pull request #147 from Orange-OpenSource/fix/test-integ-circular-import

Do not run flask in debug mode anymore
This commit is contained in:
Fabrice Reix 2021-02-06 20:51:24 +01:00 committed by GitHub
commit 1636d37692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
from tests import app from tests import app
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=8000) app.run(host='0.0.0.0', port=8000)