1

我安装了 pyral 并尝试从 Rally 检索票,但没有返回任何结果。这发生在 Windows 和 Linux 以及 Python 2 和 3 中。

>>> import pyral
>>> r = pyral.Rally(apikey=apikey, project=projname)
>>> r.get("UserStory", fetch=True, query='FormattedID = "{}"'.format(ID))
200 QueryResult TotalResultCount: 0  Results: []
4

1 回答 1

0

通过将 pyral 从 1.4.0 降级到 1.2.3 解决了该问题。它可以在https://pypi.python.org/pypi/pyral/1.2.3下载。这解决了 Windows 和 Linux 以及 Python 2 和 Python 3 上的问题。

>>> import pyral
>>> r = pyral.Rally(apikey=apikey, project=projname)
>>> r.get("UserStory", fetch=True, query='FormattedID = "{}"'.format(ID))
HierarchicalRequirement result set, totalResultSetSize: 1, startIndex: 1  pageSize: 200  current Index: 0
于 2018-01-09T22:04:12.410 回答