wolever / parameterized

Parameterized testing with any Python test framework
Other
833 stars 105 forks source link

test not found when include Chinese in doc #131

Closed xqsun0 closed 3 years ago

xqsun0 commented 3 years ago

`class TestClass(unittest.TestCase):

@parameterized.expand([('png')])
def test_a(self, _type):
    """
    测试png
    :param _type:
    :return:
    """
    print _type

if name == 'main': unittest.main(verbosity=2)`

image