# task-2052: InsuRo CI 실패 수정 — pytest 의존성 누락

## 문제
GitHub Actions CI가 `No module named pytest`로 전체 실패.
`server/requirements.txt`에 pytest가 포함되지 않음.

## ★ 프로젝트: `/home/jay/projects/InsuRo/`

## 수정
1. `server/requirements.txt`에 테스트 의존성 추가:
   ```
   pytest>=7.0
   pytest-asyncio>=0.21
   httpx  # TestClient 의존
   ```
   - 이미 있는 패키지는 중복 추가 금지
   - `grep -i "pytest\|httpx" server/requirements.txt` 로 기존 확인 후 추가

2. CI 워크플로우 확인 (`.github/workflows/ci.yml`):
   - `pip install -r server/requirements.txt` 단계가 이미 있으므로 requirements.txt만 수정하면 됨

3. 로컬 검증:
   ```bash
   cd /home/jay/projects/InsuRo/server
   pip install -r requirements.txt
   python -m pytest tests/ -x --tb=short
   ```

## 완료 시그니처
- [grep] `pytest` @ `server/requirements.txt`

## 검증 시나리오
1. `grep pytest server/requirements.txt` → 1건+
2. `cd server && python -m pytest tests/ -x` → PASS
3. `npm run build` → 빌드 성공

## 레벨
- normal

## 프로젝트
- insuro
