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}"