0

Pyral 有没有办法获得不同缺陷严重程度的列表?我可以按严重性类型查询,例如:

severity=rally.get(entity='Defect', fetch=True, query=['Severity = "Serious"'])

这给出了严重性为“严重”的所有缺陷,但是除了调试之外,我如何找到所有不同的严重性类型?

4

1 回答 1

1

在 GitHub 上的 pyral 存储库的“示例”文件夹中,有几个文件列出了允许的值和架构。

允许值:https ://github.com/RallyTools/RallyRestToolkitForPython/blob/master/examples/allowedValues.py

架构:https ://github.com/RallyTools/RallyRestToolkitForPython/blob/master/examples/get_schema.py

您也可以使用 Agile Central Web Services API 文档来查看所有信息。

https://rally1.rallydev.com/slm/doc/webservice/

于 2018-02-27T11:10:56.443 回答