Python基础教程之pytest参数化详解目录目录前言源代码分析装饰测试类装饰测试函数单个数据一组数据组合数据标记用例嵌套字典增加测试结果可读性总结前言前言上篇博文介绍过,pytest是目前比较成熟功能齐全的测试框架,使用率肯定也不断攀升。在实际工作中,许多测试用例都是类似的重复,一个个写最后代码会显得很冗余。这里,我们来了解一下@pytest.mark.parametrize装饰器,可以很好地解决上述问题。源码分析def parametrize(self,argnames, argvalues, indirect=False, ids=None, scope=None):   """Add new invocations to the underlying test function using the list    of argvalues for the given argnames. Parametrization is performed   during the collection ph