pytest integration
inline-snapshot provides one pytest option with different flags (create, fix, trim, update, short-report, report, disable).
Snapshot comparisons return always True
if you use one of the flags create, fix or review.
This is necessary because the whole test needs to be run to fix all snapshots like in this case:
from inline_snapshot import snapshot
def test_something():
assert 1 == snapshot(5)
assert 2 <= snapshot(5)
Note
Every flag with the exception of disable and short-report disables the pytest assert-rewriting.
--inline-snapshot=create,fix,trim,update¶
Approve the changes of the given category. These flags can be combined with report and review.
from inline_snapshot import snapshot
def test_something():
assert 1 == snapshot()
assert 2 <= snapshot(5)
[1;34m> pytest test_something.py --inline-snapshot=create,report
[0m[1m============================= test session starts ==============================[0m
platform linux -- Python 3.12.8, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/tmp.oxMQ7RA6TJ
plugins: pytest_freezer-0.4.9, inline-snapshot-0.17.1, mock-3.14.0, typeguard-4.4.1, subtests-0.13.1, hypothesis-6.122.1, time-machine-2.16.0
collected 1 item
test_something.py [32m.[0m[32m [100%][0m
=============================== inline snapshot ================================
─────────────────────────────── Create snapshots ───────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -2,5 +2,5 @@ |
| |
| |
| |
| def test_something(): |
| - assert 1 == snapshot() |
| + assert 1 == snapshot(1) |
| assert 2 <= snapshot(5) |
+------------------------------------------------------------------------------+
These changes will be applied, because you used --inline-snapshot=create
──────────────────────────────── Trim snapshots ────────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -3,4 +3,4 @@ |
| |
| |
| def test_something(): |
| assert 1 == snapshot(1) |
| - assert 2 <= snapshot(5) |
| + assert 2 <= snapshot(2) |
+------------------------------------------------------------------------------+
These changes are not applied.
Use --inline-snapshot=trim to apply them, or use the interactive mode with
--inline-snapshot=review
[32m============================== [32m[1m1 passed[0m[32m in 0.18s[0m[32m ===============================[0m
--inline-snapshot=short-report¶
give a short report over which changes can be made to the snapshots
[1;34m> pytest test_something.py --inline-snapshot=short-report
[0m[1m============================= test session starts ==============================[0m
platform linux -- Python 3.12.8, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/tmp.HlT9PSvQmz
plugins: pytest_freezer-0.4.9, inline-snapshot-0.17.1, mock-3.14.0, typeguard-4.4.1, subtests-0.13.1, hypothesis-6.122.1, time-machine-2.16.0
collected 1 item
test_something.py [32m.[0m[31mE[0m[31m [100%][0m
==================================== ERRORS ====================================
[31m[1m_____________________ ERROR at teardown of test_something ______________________[0m
your snapshot is missing one value.
=============================== inline snapshot ================================
Info: one snapshot can be trimmed (--inline-snapshot=trim)
Error: one snapshot is missing a value (--inline-snapshot=create)
You can also use --inline-snapshot=review to approve the changes interactively
[36m[1m=========================== short test summary info ============================[0m
[31mERROR[0m test_something.py::[1mtest_something[0m - Failed: your snapshot is missing one value.
[31m========================== [32m1 passed[0m, [31m[1m1 error[0m[31m in 0.16s[0m[31m ==========================[0m
Info
short-report exists mainly to show that snapshots have changed with enabled pytest assert-rewriting. This option will be replaced with report when this restriction is lifted.
--inline-snapshot=report¶
Shows a diff report over which changes can be made to the snapshots
[1;34m> pytest test_something.py --inline-snapshot=report
[0m[1m============================= test session starts ==============================[0m
platform linux -- Python 3.12.8, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/tmp.B9q0eQuL9E
plugins: pytest_freezer-0.4.9, inline-snapshot-0.17.1, mock-3.14.0, typeguard-4.4.1, subtests-0.13.1, hypothesis-6.122.1, time-machine-2.16.0
collected 1 item
test_something.py [32m.[0m[31mE[0m[31m [100%][0m
==================================== ERRORS ====================================
[31m[1m_____________________ ERROR at teardown of test_something ______________________[0m
your snapshot is missing one value.
=============================== inline snapshot ================================
─────────────────────────────── Create snapshots ───────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -2,5 +2,5 @@ |
| |
| |
| |
| def test_something(): |
| - assert 1 == snapshot() |
| + assert 1 == snapshot(1) |
| assert 2 <= snapshot(5) |
+------------------------------------------------------------------------------+
These changes are not applied.
Use --inline-snapshot=create to apply them, or use the interactive mode with
--inline-snapshot=review
──────────────────────────────── Trim snapshots ────────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -3,4 +3,4 @@ |
| |
| |
| def test_something(): |
| assert 1 == snapshot() |
| - assert 2 <= snapshot(5) |
| + assert 2 <= snapshot(2) |
+------------------------------------------------------------------------------+
These changes are not applied.
Use --inline-snapshot=trim to apply them, or use the interactive mode with
--inline-snapshot=review
[36m[1m=========================== short test summary info ============================[0m
[31mERROR[0m test_something.py::[1mtest_something[0m - Failed: your snapshot is missing one value.
[31m========================== [32m1 passed[0m, [31m[1m1 error[0m[31m in 0.17s[0m[31m ==========================[0m
--inline-snapshot=review¶
Shows a diff report for each category and ask if you want to apply the changes
[1;34m> pytest test_something.py --inline-snapshot=review
[0m[1m============================= test session starts ==============================[0m
platform linux -- Python 3.12.8, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/tmp.51YsB7XTnH
plugins: pytest_freezer-0.4.9, inline-snapshot-0.17.1, mock-3.14.0, typeguard-4.4.1, subtests-0.13.1, hypothesis-6.122.1, time-machine-2.16.0
collected 1 item
test_something.py [32m.[0m[32m [100%][0m
=============================== inline snapshot ================================
─────────────────────────────── Create snapshots ───────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -2,5 +2,5 @@ |
| |
| |
| |
| def test_something(): |
| - assert 1 == snapshot() |
| + assert 1 == snapshot(1) |
| assert 2 <= snapshot(5) |
+------------------------------------------------------------------------------+
do you want to create these snapshots? [y/n] (n):
──────────────────────────────── Trim snapshots ────────────────────────────────
+----------------------------- test_something.py ------------------------------+
| @@ -3,4 +3,4 @@ |
| |
| |
| def test_something(): |
| assert 1 == snapshot(1) |
| - assert 2 <= snapshot(5) |
| + assert 2 <= snapshot(2) |
+------------------------------------------------------------------------------+
do you want to trim these snapshots? [y/n] (n):
[32m============================== [32m[1m1 passed[0m[32m in 0.18s[0m[32m ===============================[0m
--inline-snapshot=disable¶
Disables all the snapshot logic. snapshot(x)
will just return x
.
This can be used if you think exclude that snapshot logic causes a problem in your tests, or if you want to speedup your CI.
deprecation
This option was previously called --inline-snapshot-disable