我正在尝试使用 pytest 框架构建并运行(不相关的selenium)测试套件。
我写了一个简单的测试如下
class test_pqr():
def test_lmn(self):
print("AAAAAAAAAAAAAAAAAAAAA")
assert True
def test_xyz(self):
assert False
x= test_pqr()
x.test_lmn()
如果我也运行xyz ......例如
class test_pqr():
def test_lmn(self):
print("AAAAAAAAAAAAAAAAAAAAA")
assert True
def test_xyz(self):
assert False
x= test_pqr()
x.test_lmn()
x.test_xyz()
什么剂量
在运行pytest.main之前导入unittest
错误意味着什么?
为什么不能发现测试?
收集了0件
为什么只有在出现错误时才运行方法?
答案 0 :(得分:0)
大写的大写
小写的方法......
尽管测试按预期运行,但错误仍然存在......