"""Integration test configuration.""" import os from os.path import dirname from os.path import join from dotenv import load_dotenv # Load environment variables from a .env file if present dotenv_path = join(dirname(__file__), '.env') load_dotenv(dotenv_path) QA_BASE_URL = ( os.environ.get('QA_BASE_URL') or 'https://qa-ows-ddex-lambda-proxy.theorchard.io')