能夠使用 -v 選項,顯示測試的詳細信息。html
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查看所有選項.以下圖:python
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版本及安裝目錄 |