如何通过pyral获取与里程碑相关的所有用户故事和缺陷

how to get all user stories and defects linked with milestone via pyral

我正在尝试获取所有用户故事和缺陷附加集会中的特定里程碑,我正在使用 pyral
我找不到任何文档或任何示例。

我们将不胜感激。

可以在 this python examples repo 中找到使用 python 工具包获取用户故事的示例。

您要更新此代码的位置是在指定查询条件的行内:

criterion = '((Iteration.Name contains "Iteration 6")OR(Iteration.Name contains "Iteration 7"))'

您需要像这样提供里程碑 _ref,而不是指定迭代名称:

criterion = '(Milestones contains "/milestone/12345678")'

然后要获取所有缺陷,您将 运行 相同的查询但请求 'defect' 而不是 'hierarchicalrequirement'

另一种方法是发出单个请求并指定类型 'artifact',因为用户故事和缺陷都继承自类型 'artifact'。