可以使用 -v 选项,显示测试的详细信息。
pytest -v demo.py
=================================================== test session starts ====================================================
platform darwin -- Python 3.7.4, pytest-4.4.0, py-1.8.0, pluggy-0.13.0 -- /Users/zhouwanghua/Code/Leyan/python/robocop/bin/python
cachedir: .pytest_cache
metadata: {'Python': '3.7.4', 'Platform': 'Darwin-18.6.0-x86_64-i386-64bit', 'Packages': {'pytest': '4.4.0', 'py': '1.8.0', 'pluggy': '0.13.0'}, 'Plugins': {'bdd': '3.1.0', 'html': '1.20.0', 'metadata': '1.8.0'}}
rootdir: /Users/zhouwanghua/Code/Leyan/robocop, inifile: pytest.ini
plugins: bdd-3.1.0, html-1.20.0, metadata-1.8.0
collected 1 item
demo.py::test_demo PASSED
常用命令行选项
pytest有丰富的命令行选项,以满足不同的需要,下面对常用的命令行选项作下简单介绍。 上文已经使用过-v选项,还有很多选项,你可以使用pytest --help查看全部选项.如下图:
Command | Desc |
---|---|
pytest --help | 显示全部选项 |
pytest --collect-only | 给定配置下显示那些用例会运行 |
pytest -k "asdict or defaults" --collect-only | 筛选用例 |
pytest -x | 遇到失败后停止测试 |
pytest --tb=no | 关闭错误信息回溯argument --tb: (choose from 'short', 'no', 'line') |
pytest --maxfail=2 --tb=no | 明确指定失败几次后停止 |
pytest -s(pytest --capture=no) | 信息捕获方法pytest --capture=sys和pytest --capture=fd |
pytest -l(pytest --showlocals) | 避免一些不必要的print语句 |
pytest -lf --tb=no | 定位到最后一个失败的用例 |
pytest -ff --tb=no | 定位到第一个失败的用例,ff会运行完剩余的用例 |
pytest -v --ff --tb=no | 每个用例占一行(之前是每个文件占一行) |
pytest -q | 简化输出信息 |
pytest -l | 打印本地变量 |
pytest --duration=3 | 显示耗时最长的三个阶段 |
pytest --version | 查看pytest版本及安装目录 |
来源:oschina
链接:https://my.oschina.net/u/2474096/blog/3111760