pytest + allure 生成测试报告
pytest测试样例规则: 测试文件以test_开头(以_test结尾也可以) 测试类以Test开头,并且不能带有 init 方法 测试函数以test_开头 断言使用基本的assert即可 ubuntu 安装allure sudo apt-add-repository ppa:qameta/allure sudo apt-get update sudo apt-get install allure mac安装allure: brew install allure 源码安装参考地址: https://bintray.com/qameta/generic/allure2 安装pytest以及allure包: pip3 install pytest #不使用这个pip3 install pytest-allure-adaptor,用下面那个 pip3 install allure-pytest 创建一个用例 test_one.py: class TestClassOne(object): def test_one(self): x = "this" assert 't'in x def test_two(self): x = "hello" assert hasattr(x, 'check') class TestClassTwo(object): def test_one(self):