From e4f7a181d15d0d63e69bcc8837a8b3067db81c62 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 23 Oct 2024 14:51:59 +0200 Subject: [PATCH] Switch to new dev cluster (#1176) --- tests/e2e/conftest.py | 2 +- tests/unit/conftest.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/e2e/conftest.py b/tests/e2e/conftest.py index 0a7dabfa..0567bd51 100644 --- a/tests/e2e/conftest.py +++ b/tests/e2e/conftest.py @@ -83,7 +83,7 @@ def ws( async def api_config(tmp_path_factory: Any) -> AsyncIterator[Optional[pathlib.Path]]: e2e_test_token = os.environ.get("E2E_USER_TOKEN") e2e_test_api_endpoint = os.environ.get( - "E2E_API_ENDPOINT", "https://dev.neu.ro/api/v1" + "E2E_API_ENDPOINT", "https://api.dev.apolo.us/api/v1" ) if e2e_test_token: tmp_path = tmp_path_factory.mktemp("config") diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 3fece7e3..8928b24e 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -15,9 +15,7 @@ def assets() -> pathlib.Path: @pytest.fixture(scope="session") def api_config(tmp_path_factory: Any) -> Iterator[pathlib.Path]: e2e_test_token = os.environ.get("E2E_USER_TOKEN") - e2e_test_api_endpoint = os.environ.get( - "E2E_API_ENDPOINT", "https://dev.neu.ro/api/v1" - ) + e2e_test_api_endpoint = "https://api.dev.apolo.us/api/v1" if e2e_test_token: tmp_path = tmp_path_factory.mktemp("config") config_path = tmp_path / "conftest"