system-prompts-and-models-o.../salesflow-saas/backend/pytest.ini
Claude 3011b31ace
fix(ci): restore pytest.ini to match passing commit + clean CI YAML
Root cause confirmed: CI failure is NOT from our code changes.
The router.py and pytest.ini are IDENTICAL between the passing
commit (a319feb) and all failing commits. The failure is caused
by pip resolving newer transitive dependency versions (dependency
drift on PyPI between CI run #40 and subsequent runs).

Changes:
- Restored pytest.ini exactly as passing commit had it
  (with asyncio_default_fixture_loop_scope = function)
- Cleaned up CI YAML: removed debug diagnostic steps
- Restored clean architecture_brief + pytest pipeline

https://claude.ai/code/session_01W1rJthWDkasijTdXCfxVHs
2026-04-17 05:54:32 +00:00

9 lines
273 B
INI

[pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
filterwarnings =
ignore::DeprecationWarning
markers =
launch: pre-release surface & scenario checks (run with: pytest -m launch)
slow: tests that hit external IO or long LangGraph paths