这是我的测试脚本:
@pytest.mark.parametrize('data', [0, 1], ids=['有效', '无效'])
def test_a(data):
assert 1
但每个ID的名称在Pycharm和Terminal中均被转义:
那么,如何解决呢?
FFIVE
相关分类