Can Python's unittest test in parallel, like nose can?

后端 未结 7 1108
小蘑菇
小蘑菇 2020-12-01 01:53

Python\'s NOSE testing framework has the concept of running multiple tests in parallel.

The purpose of this is not to test concurrency in the code, but to make test

相关标签:
7条回答
  • 2020-12-01 02:43

    If you only need Python3 suport, consider using my fastunit.

    I just change few code of unittest, making test case run as coroutines.

    It really saved my time.

    I just finished it last week, and may not testing enough, if any error happens, please let me know, so that I can make it better, thanks!

    0 讨论(0)
提交回复
热议问题