Metadata-Version: 2.4
Name: vscode-pytest-update-snapshot
Version: 0.1.0
Summary: Run pytest on the test at cursor and update inline snapshots.
Author-email: David Walker <dbwalker0min@gmail.com>
License: MIT
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.19.2
Dynamic: license-file

# vscode-pytest-update-snapshot

Run `pytest` on the test under your cursor and update inline snapshots (VSCode-friendly).

## Install / Run (no install with uvx)

```bash
uvx vscode-pytest-update-snapshot tests/test_example.py 12
# ensure it uses your project venv interpreter:
uvx --python ".venv/Scripts/python.exe" vscode-pytest-update-snapshot tests/test_example.py 12
```

Pass extra pytest args after --:

```bash
uvx vscode-pytest-update-snapshot tests/test_example.py 12 -- -q -k "mycase"
```
