前言
新增 --start-project
命令, 帮助初学者快速创建项目 demo 结构, 并自动创建几个简单的用例。
创建项目demo结构
执行以下命令
代码语言:javascript复制pytest --start-project
运行日志
代码语言:javascript复制(venv) D:demountitled_start>pytest --start-project
create ini file: D:demountitled_startpytest.ini
create config file: D:demountitled_startconfig.py
create file: D:demountitled_startcase_demo
create yaml file: D:demountitled_startcase_demotest_get.yml
create yaml file: D:demountitled_startcase_demotest_post.yml
create yaml file: D:demountitled_startcase_demotest_extract.yml
执行完成会自动生成以下文件
test_extract.yml 内容
代码语言:javascript复制config:
name: 参数关联-用例a提取结果给到用例b
test_a:
name: extract提取结果
request:
method: POST
url: /post
json:
username: test
password: "123456"
extract:
url: body.url
validate:
- eq: [status_code, 200]
- eq: [headers.Server, gunicorn/19.9.0]
- eq: [$..username, test]
- eq: [body.json.username, test]
test_b:
name: 引用上个接口返回
request:
method: GET
url: http://httpbin.org/get
headers:
url: ${url}
validate:
- eq: [status_code, 200]
自动创建 pytest.ini 文件,并添加 2 个配置参数
代码语言:javascript复制[pytest]
log_cli = true
env = test
看到项目结构生成后,仅需执行 pytest 命令即可运行用例
代码语言:javascript复制pytest
执行结果