Run python nosetests using a watcher for changes on Linux

radkin

Noel Miller

Posted on June 5, 2020

Run python nosetests using a watcher for changes on Linux

Apparently, this is very specific to linux (at least Ubuntu 18.04) as I tried using the "nose-watch" package and it did not work. Ultimately, I did this:

sudo -H pip install nose-watcher
nosetests --with-watcher
Enter fullscreen mode Exit fullscreen mode

Also, if you plan to run it in another window you will need to reload or open a new shell post install.

💖 💪 🙅 🚩
radkin
Noel Miller

Posted on June 5, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related