searchusermenu
  • 发布文章
  • 消息中心
点赞
收藏
评论
分享
原创

何以代码?

2024-06-13 12:46:48
4
0

如果代码块只有包含一条语句,Lambda表达式允许省略代码块的花括号,如果省略了代码块的花括 号,这条语句不要用花括号表示语句结束。

def allure_test(testcase_path, xml_path, mark=None):
    if not os.path.exists(xml_path):
        os.mkdir(xml_path)
    # 定义测试集
    args = ['--alluredir={path_allure}'.format(path_allure=xml_path)]
    # 标签
    if not mark:
        mark = COMMON['MARK']
    try:
        if testcase_path is not None:
            test_args = ['-q', testcase_path, '-m', mark]
            pytest.main(test_args + args)
        else:
            print("用户未选择执行项目,不执行")
    except Exception as e:
        print("Exception", str(e))
0条评论
0 / 1000
v****n
4文章数
0粉丝数
v****n
4 文章 | 0 粉丝
v****n
4文章数
0粉丝数
v****n
4 文章 | 0 粉丝
原创

何以代码?

2024-06-13 12:46:48
4
0

如果代码块只有包含一条语句,Lambda表达式允许省略代码块的花括号,如果省略了代码块的花括 号,这条语句不要用花括号表示语句结束。

def allure_test(testcase_path, xml_path, mark=None):
    if not os.path.exists(xml_path):
        os.mkdir(xml_path)
    # 定义测试集
    args = ['--alluredir={path_allure}'.format(path_allure=xml_path)]
    # 标签
    if not mark:
        mark = COMMON['MARK']
    try:
        if testcase_path is not None:
            test_args = ['-q', testcase_path, '-m', mark]
            pytest.main(test_args + args)
        else:
            print("用户未选择执行项目,不执行")
    except Exception as e:
        print("Exception", str(e))
文章来自个人专栏
天翼云数字化运营部测试
4 文章 | 3 订阅
0条评论
0 / 1000
请输入你的评论
0
0