1.在控制台项目根目录里执行报错: ModuleNotFoundError: No module named 'BaseInterfaceTest'
解决方案:
在运行的第一个test文件中加如下代码
import sys
sys.path.append('根目录')
2.pytest.ini文件
[pytest]
addopts = -v
-v 可以在控制台输出case名字
不加的效果是这样的
加了的效果是这样的:
3.被@pytest.fixture()修饰的函数,reture的值可以被其他test函数作为参数使用,参数名为被修饰函数名
4.在pytest.ini文件中配置
addopts = -v --html=./Report/report111.html
终端中执行pytest报错,如下
需要安装pytest-html模块,pip install pytest-html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)