diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-10-31 12:17:26 +0100 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-11-05 18:02:32 -0200 |
commit | 9ab17e2bbf61062ce8399ef1c51d2069a0cced31 (patch) | |
tree | 4079dcbd6f4fe5c485595491f4fb874e3898bc1c /service/test/functional | |
parent | 0bfc4824189807c7a8971093910ced527b4e6a29 (diff) |
moving to twisted
Diffstat (limited to 'service/test/functional')
-rw-r--r-- | service/test/functional/features/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/environment.py b/service/test/functional/features/environment.py index 8cfdcbbc..19e2a6f0 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -33,7 +33,7 @@ def before_all(context): pixelated.controllers.features_controller.FeaturesController.DISABLED_FEATURES.append('autoRefresh') logging.disable('INFO') - worker = lambda app, port: pixelated.runserver.app.run(port=4567, use_reloader=False) + worker = lambda app, port: pixelated.runserver.app.run(host='localhost', port=4567) context._process = multiprocessing.Process(target=worker, args=(context.app, 4567)) context._process.start() |