summaryrefslogtreecommitdiff
path: root/service/test/functional/features/environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/functional/features/environment.py')
-rw-r--r--service/test/functional/features/environment.py2
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()