Run unit tests for two Django applications
've Django project with two applications with added unit tests (django.test.TestCase). In PyCharm I have created two Django test launchers (one for every app). In this configuration everything works correctly. Now I want to create one test launcher, which will be able to start unit test for both applications at once.
Is it possible?
Is it possible?
请先登录再写评论。
Please add the names of your django applications separated by a space to Target field of your Django tests Run/Debug configuration (e.g. "polls polls_1").
Please find attached screenshot with configuration.
Thanks for the hint. It works how I expected!