# ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
pytest: error: unrecognized arguments: --tst

- **ID:** `python/pytest-command-line-option-typo`
- **Domain:** python
- **Category:** config_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

在命令行中使用了不存在的 pytest 选项，通常因为拼写错误或插件未加载。

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.10 | active | — | — |

## Workarounds

1. **确认选项存在** (95% success)
   ```
   检查拼写，使用 pytest --help 查看可用选项
   ```
2. **安装插件** (90% success)
   ```
   安装相应插件，如 pytest-cov 提供 --cov
   ```

## Dead Ends

- **使用 --help** — 尝试使用 --help 查看所有选项但可能忽略插件选项 (40% fail)
- **自定义选项注册错误** — 尝试在 conftest.py 中添加自定义选项但未正确注册 (60% fail)
