From 78b8c930d9ba2c27962aaf0967a5368e26e10cde Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Tue, 19 Apr 2022 18:24:46 +0200 Subject: [PATCH] 0.0.0.0 for webserver host in test --- test/integration_tests/actual_server_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration_tests/actual_server_test.py b/test/integration_tests/actual_server_test.py index 53ac067..81947b8 100644 --- a/test/integration_tests/actual_server_test.py +++ b/test/integration_tests/actual_server_test.py @@ -12,7 +12,7 @@ from image_prediction.pipeline import load_pipeline @pytest.fixture def host(): - return "127.0.0.1" + return "0.0.0.0" def get_free_port(host):