大方美女

文章
3
资源
0
加入时间
2年10月17天

Launching unittests with arguments python -m unittest

代码中含有test关键字,或者test为前缀开头也是有问题的,检测到test,pycharm会自动进入单元测试 def test(): correct = 0 total = 0def test1(): correct = 0 total = 0以上两个都是有问题的解决办法:::::::::可以def super_test1(): correct = 0 total = 0参考大佬:https://blog.csdn.net/weixin_44024993/