pytest学习
安装 pip install pytest pytest --version 第一个test test.py def func(x): return x + 1 def test_answer(): assert func( 3 ) == 5 运行结果如图所示: 运行 默认会执行当前目录及子目录的所有test_*.py或* _test.py文件。用例执行成功为.,失败为F pytest 静默执行 pytest -q E:\Python_Web\pytest-requests-allure \test.py # 调试方式执行,可以打印print日志等详情信息 $ pytest E:\Python_Web\pytest-requests-allure \test.py -s - v # python模块方式执行 $ python -m pytest E:\Python_Web\pytest-requests-allure \test.py # 执行单个目录下的tests $ python E:\Python_Web\pytest-requests-allure \ test类包含多个tests # pytest默认会执行所有test_前缀的函数 class TestClass( object ): def test_one(self): x = " this " assert ' h