标签:订阅 version 避免 module file 子目录 -o 地址 哪些
? ? pytest常见的非测试文件,如下所示:
? ? pytest.ini示例如下所示:
[pytest]
addopts = -rsxX -L --tb=short --strict
xfail_stric = true
...
>>> pytest --help
[pytest] ini-options in the first pytest.ini|tox.ini|setup.cfg file found:
markers (linelist): markers for test functions
empty_parameter_set_mark (string): default marker for empty parametersets
norecursedirs (args): directory patterns to avoid for recursion
testpaths (args): directories to search for tests when no files or directories are given in
usefixtures (args): list of default fixtures to be used with this project
python_files (args): glob-style file patterns for Python test module discovery
python_classes (args): prefixes or glob names for Python test class discovery
python_functions (args): prefixes or glob names for Python test function and method discovery
? ? 除前面列出的选项,利用插件和conftest.py文件还可以添加新的选项。新增的选项也可以使用pytest --help查看。
? ? 如果某一些选项经常,又不想每次重复输入,这时则可以修改pytest.ini文件的addopts设置,如下所示:
[pytest]
addopts = -rsxX -L --tb=short --strict
? ? 自定义标记可以简化测试工作,让我们可以使用指定的标记运行某个子集,但标记很容易拼错。默认情况下,并不会引起程序错误,pytest会以为是创建的另外一个新的标记。为避免这种情况,可以在pytest.ini中注册标记。如下所示:
[pytest]
markers =
smoke: Run the smoke test function
get: Run the get test function
? ? 标记做好之后,可以通过pytest --markers来查看,如下所示:
>>> pytest --markers
@pytest.mark.smoke: Run the smoke test function
@pytest.mark.get: Run the get test function
? ? 没有注册的标记不会出现在--markers列表中。如果使用--strict选项,遇到拼写错误的标记或未标记的标记就会报错。
? ? minversion选项可以指定运行测试用例的pytest的最低版本。示例如下所示:
[pytest]
minversion = 5.2
? ? pytest在默认情况,会搜索指定目录及其子目录。如果想跳过某些目录,可以使用norecursedirs选项。
norecursedirs的默认设置是.* build dist CVS _darcs {arch}和*.egg
? ? 示例如下所示:
[pytest]
norecursedirs = .* build dist CVS _darcs \{arch\} *.egg
? ? norecursedirs指定哪些目录不用访问,而 testpaths 则指定了pytest去哪里搜索运行测试, testpaths是一系列相对于根目录的路径,用于限定测试用例的搜索范围,只有在pytest未指定文件目录参数或测试用例标识符时,该选项才会启用。如下所示:
[pytest]
testpaths = test
? ? pytest根据一定的规则搜索并运行测试,一个标准的测试搜索规则如下所示:
1.python_classes
? ? 通常,pytest的测试搜索规则是寻找以Test*开头的测试类,而且这个类不能包含__init__()方法。但如果没有按照这个格式对类进行命名(如 < something > Test),该怎么办?针对这种情况,可以使用python_classes来解决这个问题。如下所示:
[pytest]
python_classes = *Test Test* *Suite
2.python_files
? ? 与python_classes类似,python_files是更改搜索测试模块的规则,如下所示:
[pytest]
python_files = test_* *_test check_*
3.python_functions
? ? 与前面两个类似,python_functions是更改搜索测试函数规则,如下所示:
[pytest]
python_functions = test_* *_test check_*
? ? 设置xfail_strict = True 可以将那些被标记@pytest.mark.xfail但实际运行通过的测试用例也被报告为测试失败。设置如下所示:
[pytest]
xfail_strict = True
? ? 在讲解Python的模块和包时,为了避免命名冲突,可以使用模块和包。在测试过程中,同样也可以同样的解决思路。
原文地址:https://www.cnblogs.com/surpassme/p/13262604.html
本文同步在微信订阅号上发布,如各位小伙伴们喜欢我的文章,也可以关注我的微信订阅号:woaitest,或扫描下面的二维码添加关注:
标签:订阅 version 避免 module file 子目录 -o 地址 哪些
原文地址:https://www.cnblogs.com/surpassme/p/13262604.html