From e05846db9f34d51909deab569e70e77a28285b8d Mon Sep 17 00:00:00 2001 From: rkuo-danswer Date: Mon, 28 Oct 2024 11:33:32 -0700 Subject: [PATCH] change test port to 8889 (docker desktop is now using port 8888 which blocks the test from working on mac) (#2972) --- backend/tests/integration/tests/pruning/test_pruning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/integration/tests/pruning/test_pruning.py b/backend/tests/integration/tests/pruning/test_pruning.py index 7498f760c..cd8a7bde4 100644 --- a/backend/tests/integration/tests/pruning/test_pruning.py +++ b/backend/tests/integration/tests/pruning/test_pruning.py @@ -110,7 +110,7 @@ def test_web_pruning(reset: None, vespa_client: vespa_fixture) -> None: test_filename = os.path.realpath(__file__) test_directory = os.path.dirname(test_filename) with tempfile.TemporaryDirectory() as temp_dir: - port = 8888 + port = 8889 website_src = os.path.join(test_directory, "website") website_tgt = os.path.join(temp_dir, "website")