From 1ec6159b416567fea414f550b51201791081f1f1 Mon Sep 17 00:00:00 2001 From: Zac Li Date: Tue, 22 Aug 2023 16:33:34 +0800 Subject: [PATCH] fix: more --- tests/integration/helper.py | 2 +- tests/integration/local/test_basic_app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/helper.py b/tests/integration/helper.py index 499cea74..edabd9f0 100644 --- a/tests/integration/helper.py +++ b/tests/integration/helper.py @@ -89,7 +89,7 @@ def run_test_app_locally(request): # Start the app server_process = subprocess.Popen( - ["python", "-m", "lcserve", "deploy", "local", app_name, "--port", "8000"], + ["python", "-m", "lcserve", "deploy", "local", app_name, "--port", "7030"], env=env, ) logging.info(f"Wait 10s for app [{app_name}] to be ready ...") diff --git a/tests/integration/local/test_basic_app.py b/tests/integration/local/test_basic_app.py index 1908198e..4c426b9a 100644 --- a/tests/integration/local/test_basic_app.py +++ b/tests/integration/local/test_basic_app.py @@ -13,7 +13,7 @@ run_test_app_locally, ) -HOST = "localhost:8000" +HOST = "localhost:7030" HTTP_HOST = f"http://{HOST}" WS_HOST = f"ws://{HOST}"