[pytest] testpaths = tests # W3-1 test lane 분리. 경로/파일명 기반 auto-marking은 conftest.py의 # pytest_collection_modifyitems에서 수행한다. markers = core: 순수 단위/계약 테스트 (tests/core, tests/services, tests/pipeline). 가장 빠름. startup: FastAPI 부팅 + auth/users/api lane. TestClient 사용. image: 이미지/variation/fal 관련 lane. 외부 모킹 필요, 시간 소요. full: 레거시 v2/v3 drift + pipeline E2E + projection 관측. W3 정리 대상. pg: PostgreSQL 전용. 기본 실행에서 제외. `-m pg` 명시 필요. # 기본 실행에서 pg marker 제외 (SQLite 기본). -m pg 명시한 경우만 포함. # 주의: `-k `과 조합 시에도 `-m "not pg"`가 여전히 적용되므로, pg-only 테스트는 # 기본적으로 수집되지 않는다. pg lane을 쓰려면 `pytest -m pg`로 override. addopts = -m "not pg"