当我使用 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"
和其他查询条件都没有成功。