How to automatically run tests when there's any change in my project (Django)?

后端 未结 14 1905
有刺的猬
有刺的猬 2020-12-23 19:45

At the moment I am running python manage.py test every once in a while after I make significant changes in my django project. Is it possible to run those tests

14条回答
  •  死守一世寂寞
    2020-12-23 20:17

    You can use Django Supervisor on top of Django. This will avoid the use of a CI tool (which may be useful in any case, this isn't invalidating the other response - maybe just complementary).

提交回复
热议问题