payslip-ingest/tests/conftest.py
Viktor Barzin 57484619c1 Initial commit: event-driven UK payslip ingest service
Extracted from /home/wizard/code monorepo into its own repo so Woodpecker CI
can watch it. Identical content to /home/wizard/code commit e426028.

See README.md for overview, env vars, and Paperless workflow config.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 22:10:23 +00:00

8 lines
424 B
Python

import os
os.environ.setdefault("PAPERLESS_URL", "http://paperless.test")
os.environ.setdefault("PAPERLESS_API_TOKEN", "test-paperless-token")
os.environ.setdefault("CLAUDE_AGENT_URL", "http://agent.test")
os.environ.setdefault("CLAUDE_AGENT_BEARER_TOKEN", "test-agent-token")
os.environ.setdefault("DB_CONNECTION_STRING", "sqlite+aiosqlite:///:memory:")
os.environ.setdefault("WEBHOOK_BEARER_TOKEN", "test-webhook-token")