Is there something like 'autotest' for Python unittests?

后端 未结 11 1442
有刺的猬
有刺的猬 2020-12-23 11:28

Basically, growl notifications (or other callbacks) when tests break or pass. Does anything like this exist?

If not, it should be pretty easy to wri

11条回答
  •  误落风尘
    2020-12-23 12:02

    Django's development server has a file change monitor that watches for modifications and automatically reloads itself. You could re-use this code to launch unit tests on file modification.

提交回复
热议问题