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"