西风如何更新测试说明

时间:2017-12-01 02:42:22

标签: jenkins testng jira-zephyr

我在Jenkins中运行测试,并且已经使用Zephyr集成了测试以在JIRA中显示

测试看起来像这样 - @Test(enabled = true,description ="检查OS Anomaly")     public void testOS4(){ .... }

并且在JIRA中为什么我没有看到任何测试描述 - 测试描述显示为"通过Jenkins创建测试" (请参阅附件)。有人知道这里有什么不对吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

只需验证您正在使用Zephyr URL的JSON。如果存在“描述”键,其值为“通过Jenkins创建测试”,则可以更新JSON对象中的键值。

之类的东西
res = df.sort_values(['B', 'C'])
res.loc[res.B.eq(res.shift(1).B), 'A'] = res.C - res.shift(1).C
df = pd.merge(df, res, on=['B', 'C'])
相关问题