Samuel Colvin
Samuel Colvin
looks like some tests are failing.
PR welcome to improve the docs.
Looks like just some logging paths differ. PR welcome to use regexes to avoid these failures.
closed as we've released v0.22 and v0.23.
Don't know for sure. You might need to wait a little time for the changes to propagate!?
Yup, we've had the same problem at Pydantic, it's because by default we ignore changes in the `site-packages` directory. https://github.com/samuelcolvin/watchfiles/blob/6ea19cac0447b3594cca29793fe0d308c3585a6a/watchfiles/filters.py#L82 PR welcome to remove that directory from the list.
fixed by #249.
Thanks for reporting, do the errors go away if your revert to v18.0?
Okay, I see what's happening. This is not actually "file not found", it's that you're hitting the OS file watching limit. See the Error is `FileNotFoundError: OS file watch limit...
Okay, I've fixed the wrong-error issue in #208. I've also done some digging into how many files watchfiles is watching, using [inotify-info](https://github.com/mikesart/inotify-info). I ran the following script, then monitored the...