pytest-watcher
pytest-watcher copied to clipboard
Automatically rerun your tests on file modifications
Thank you for the project #1 It'd be nice to have an option / flag for this. I am duplicating running the tests automatically by having to write 2 commands...
Hello @olzhasar. First of all, thanks for your contribution, its really handy. I'd suggest a little modification at the function ```py def _run_pytest(args) -> None: subprocess.run(["pytest", *args]) ``` To something...
The readme says that all arguments after are passed to the runner, but then immediately gives examples in which the arguments after are not past to runner, but consumed by...
I'd like to request a feature / bugfix. When tests are undergoing, and files are changed mid run, `ptw` should queue another run immediately next. Actual vs Expected: ```diff 1....
When using pytest-watcher inside a docker container (e.g. based on debian), running it on windows and mirroring file changes from windows filesystem into the docker container using a bind mount,...
## Summary Currently, `pytest-watcher` waits for the current test run to complete before starting a new one when files change. This can lead to uncertainty about whether the most recent...
Hello! Thanks for a nice package. I was wondering if there is a way to get rid of the `print_short_menu()` call when running? It would be nice to only see...