2

当我使用 PyRalget()函数时,不会返回任何结果,但如果我使用特定的内置 get 函数(例如 , getProjects()),getWorkspaces()所有数据都会正确返回。我是get()错误地使用了一般还是我有配置问题?

对于设置:

import sys
from pyral import Rally, rallyWorkset
server, user, password, apikey, workspace, project = <appropriate values>
rally = Rally(server, user, password, apikey=apikey, workspace=workspace, project=project)

这些调用正确响应(即返回的预期数据):

workspacesAll = rally.getWorkspaces()
projectsAll = rally.getProjects(workspace=workspace)

此调用没有返回数据,没有错误。用户故事存在于 Rally 中。

query_criteria = 'FormattedID = "US220220"'
response = rally.get('HierarchicalRequirement', fetch=True, query=query_criteria)

也尝试过使用"UserStory"代替"HierarchicalRequirement"和其他查询条件都没有成功。

4

1 回答 1

1

如果您通过所有项目(不是父项目),它将起作用:

query_criteria = 'FormattedID = "US220220"'
response_req = rally.get('HierarchicalRequirement', fetch=True, projectScopeDown=True, query=query_criteria)
response = response_req.next()

print response.details()
于 2017-06-15T07:02:00.060 回答