2020年1月21日

xlrd读取excel文件

摘要: import xlrd workbook=xlrd.open_workbook("../data/elementData.xlsx") #获取所有sheet,返回list sheet_name =workbook.sheet_names() print(sheet_name) #根据sheet索引获 阅读全文

posted @ 2020-01-21 15:54 crystal1126 阅读(201) 评论(0) 推荐(0) 编辑

pytest用例运行及skip、xfail的使用

摘要: 如何执行测试用例 (1)命令行运行pytest 运行目录下的所有用例 pytest test_reg.py 运行指定模块中的所有用例 pytest test_reg.py::TestClass::test_method 运行指定模块指定类指定用例 pytest -m tag 运行包含指定标签的所有用 阅读全文

posted @ 2020-01-21 11:32 crystal1126 阅读(591) 评论(0) 推荐(0) 编辑

导航