Pytest 简明教程
Pytest - Summary
在 pytest 教程中,我们涵盖以下内容 -
-
Installing pytest..
-
识别测试文件和测试功能。
-
使用 pytest –v 执行所有测试文件。
-
使用 pytest <filename> -v 执行特定文件。
-
通过子字符串匹配 pytest -k <substring> -v 执行测试。
-
根据标记 pytest -m <marker_name> -v 执行测试。
-
Creating fixtures using @pytest.fixture.
-
conftest.py 允许从多个文件访问固定装置。
-
Parametrizing tests using @pytest.mark.parametrize.
-
Xfailing tests using @pytest.mark.xfail.
-
Skipping tests using @pytest.mark.skip.
-
使用 pytest --maxfail = <num> 在 n 个失败中停止测试执行。
-
使用 pytest -n <num> 以并行方式运行测试。
-
使用 pytest -v --junitxml = "result.xml" 生成结果 xml。