[tool.pytest.ini_options]
env = [
    "DATADOG_TRACE_ENABLED=False",
    "DD_TRACE_ENABLED=False",
    "AWS_DEFAULT_REGION=us-east-1",
    "SQS_URI=https://sqs.us-east-1.amazonaws.com/437795906767/qa-notifications",
    "S3_BUCKET_NAME=qa-orcdbucket",
    "EMAILS_S3_PREFIX=ows-notifications/emails",
    "WORKSTATION_HOST=workstation.qaorch.com",
    "EMAIL_SENDER="
]
xfail_strict = true

[tool.black]
line-length = 100
target-version = ['py311']
preview = 1
exclude = '''
/(
    \.eggs
  | \.git
  | \.hg
  | \.mypy_cache
  | \.pytest_cache
  | \.tox
  | \.venv
  | venv
  | _build
  | buck-out
  | build
  | dist
)/
'''

[tool.isort]
profile = "black"
line_length = 100
skip = ["venv", ".pytest_cache", ".mypy_cache"]
src_paths = ["notifications_delivery", "tests"]
