Valentin Berlier
Valentin Berlier
Yeah you have to commit the snapshots
There's no concept of a "suffix". Either you specify the full name, and the extension is extracted to select the correct snapshot format, or you just specify the extension, and...
Hello! I'm not sure what's the best way to tackle inline snapshots so I've been putting it off until now. Recently I've been considering hooking into pytest's assertion rewriting mechanism...
Then I'd simply recommend making your own wrapper for implementing a naming scheme that suits your specific use-case: ```py # conftest.py @pytest.fixture def api_snapshot(snapshot: SnapshotFixture): d: dict[str, int] = {}...
I'm sorry for replying so late, I'm not receiving any notifications from GitHub for some reason... This loader API looks really interesting. The project needs a complete rewrite, I don't...
Looks like you're right! It's been a really long time since I touched any of this code, but I remember that the code for loading images was extremely sloppy. I...
@DevScyu Just letting you know, I finally started working on a complete rewrite. Not usable yet but it's going pretty well so far. I'm currently building a clean lower level...
I think `provide` and `inject` are the right tool for the job here. You could make the `ContentBlock` component implicitly provide the necessary context to the inner components. The users...
I have a similar issue with this. I'd really like to be able to run a one-off task during the deployment process for running database migrations but since the `.run`...
Built-in support for redactions is not really needed for `pytest-insta`. Python is a much more dynamic language than Rust, you can redact anything with an ordinary a line of code...