有没有办法用Pyral得到不同缺陷的严重程度列表?我可以按严重性类型进行查询,如下所示:
severity=rally.get(entity='Defect', fetch=True, query=['Severity = "Serious"'])这就给出了所有严重程度的缺陷,但是除了调试之外,我如何找到所有不同的严重程度类型呢?
发布于 2018-02-27 19:10:56
在GitHub上的pyral存储库中的“examples”文件夹中,有几个文件列出了允许值和模式。
允许值: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://stackoverflow.com/questions/48998229
复制相似问题