# Failed: Timeout >60.0s

- **ID:** `python/pytest-timeout-error`
- **Domain:** python
- **Category:** runtime_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

测试执行时间超过pytest-timeout插件设置的限制，导致测试被终止。

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 7.x | active | — | — |
| 8.x | active | — | — |

## Workarounds

1. **** (80% success)
   ```
   减少不必要的等待，使用mock加速
   ```
2. **** (90% success)
   ```
   pytest --timeout=120
   ```

## Dead Ends

- **** — 增加超时可能掩盖性能问题 (50% fail)
- **** — 禁用后测试可能挂起 (60% fail)
