"""Integration test configuration.""" import os import pathlib import dotenv # Load environment variables from a .env file if present dotenv_path = pathlib.Path(__file__).resolve().parent / ".env" dotenv.load_dotenv(dotenv_path) TEST_BASE_URL = os.getenv("TEST_BASE_URL") or "https://qa-ows-location.theorchard.io"