解决PyCharm IDE环境下,执行unittest不生成测试报告的问题
问题:在利用unittest框架生成测试报告时,代码执行完成,没有在指定目录下生成报告
原因:pycharm会默认使用自带的unittest框架来执行单元测试,不会执行main函数中的代码,所以不生成测试报告
解决方法:
1、点击pycharm右上角的 uittest in xxx.py下拉框
2、点击edit configuration...,在弹出的对话框中,删除 unittests in xxxx.py
3、点击绿色“+”号,新增python文件
4、script path 路径选择要执行的项目文件xxx.py,保存
5、重新以新添加的python执行文件执行源码文件即可生成
补充知识:python安装的时候报ssl连接错误的解决办法
collecting xlwt
could not fetch url https://pypi.python.org/simple/xlwt/: there was a problem confirming the ssl certificate: [ssl: certificate_verify_failed] certificate verify failed (_ssl.c:661) - skipping
could not find a version that satisfies the requirement xlwt (from versions: )
no matching distribution found for xlwt
是因为低版本的python 没有使用ssl连接, 我们在安装的请求参数添加如下选项 --trusted-host pypi.python.org ,就可以安装成功
以上这篇解决pycharm ide环境下,执行unittest不生成测试报告的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP统计二维数组元素个数的方法
下一篇: PHP URL路由类实例