赞
踩
pytest 会运行 test_ 开头 或者 _test 结尾的文件,在当前目录和子目录中
import pytest class TestClass(object): def test_one(self): x = "this" assert 'h' in x def test_two(self): x = "hello" assert hasattr(x, 'check')
运行一下,-q 是 在安静模式下运行