Frank Hoffmann

Results 169 comments of Frank Hoffmann

Yes, extensibility is one of my goals. #85 will allow you to register custom repr implementations and overwrite the default repr() behavior of classes which you have not control about...

> Seems to me, there is an opportunity for a generic wrapper around custom testing function. Something like The implementation is already generic. But I want to keep the imports,...

It is possible and it is planed, but not for the terminal. The reason is that a terminal ui will stop working for images (yes I plan to snapshot images...

You have convinced me. It will be the first insider feature for inline-snapshot. The approval-ui is a lot of work and I don't know if I will have the time...

Sounds great, I'm looking forward to your content.

Agree, what do you think about this message? `inline-snapshot works in disabled mode and is not able to change your code because you used xdist.` here are the docs https://15r10nk.github.io/inline-snapshot/latest/pytest/#-inline-snapshotdisable

No, I'm not changing any test files in the `tests/` folder on disk. I create tests for pytest in temporary folders and use pytest to run these tests. The update...

I added a requirements.txt to my branch and tested it in a normal venv. I got the same problem with `mutmut run`, but I was able to execute `python -m...

my generators return also values. I think you should change your trampoline code to something like this: ``` python if not mutant_under_test.startswith(prefix): result=yield from orig(*args, **kwargs) return result # for...

I asked me while reading your trampoline code if it could be possible to remove the trampoline indirection and replace it with if-else constructs in the functions, like: ``` python...