Results 963 comments of Ned Batchelder

> Personally, I consider it a workaround, not more; it is not by any means a solution to the problem of "unstable" path resolution. I guess this gets us into...

You might like `entr` (http://eradman.com/entrproject/) which runs arbitrary commands when files change. Is there a reason this has to be tightly integrated with pytest?

> Well, for the same reason pytest-watch is a great dev tool. Can you explain why? What does it do that works better than `entr`?

You can make this work by breaking it into two steps: `coverage run` with only the .pyc files, but then `coverage html` somewhere with the source files. If you have...

You can try using `Coverage.combine()` with a `paths` argument to indicate how the source files correspond to the .pyc files.

Can you provide more details? I don't know how this code is run. I don't know how you do it locally, or how you do it k8s. We need many...

Thanks for doing this. There are some other changes needed. Let me know which you want to do, and which I should do: - Update the documentation - Add an...