"""Integration test configuration.""" import os from os.path import dirname, join from environs import Env env = Env() # Load environment variables from a .env file if present dotenv_path = join(dirname(__file__), ".env") env.read_env(dotenv_path, recurse=False) QA_BASE_URL = os.environ.get("QA_BASE_URL") or "https://qa-ows-pdp.theorchard.io"