2

好的,我不确定我是否要使用 Request Tracker 和 RTFM,这是一种可能的解决方案。

我想拥有一个包含我的错误跟踪器/待办事项列表的知识库,这样当我解决问题时,我可以为自己或其他人记录它的解决方案。

有哪些基于 python 的解决方案可用?

4

3 回答 3

4

尝试追踪

于 2009-03-19T19:13:48.527 回答
4

我推荐的 Python 中高度灵活的问题跟踪器是“Roundup”: http ://roundup.sourceforge.net/ 。

可以在http://bugs.python.org/在线查看其使用示例。

于 2009-03-22T22:50:50.913 回答
0

我确实有使用大约 20-30 个不同的错误跟踪器的经验,安装或托管,到目前为止,如果您要处理大量错误并且您想花更少的时间编写问题跟踪器来获得 Atlassian Jira ,对于开源项目是免费的。

是的,它不是 Python,它是 Java,启动缓慢并且需要大量资源。同时,RAM 比你自己的时间便宜得多,如果你想扩展系统,你可以在 Python 中使用https://pypi.python.org/pypi/jira-python/

您认为 Jira 是无缘无故使用最多的错误跟踪器吗?它不是市场上的第一个,实际上与其他人相比是相当新的。

部署后,您可以专注于改进工作流程,而不是修补错误跟踪器。

One of the best features that it has is the ability to link to external issues and be able to see their status, without having to click on them. As an warning, for someone coming from another tracekr you may discover that there are some design limitations, like the fact that a bug can have a single assignee. Don't be scared about it, if you look further you will find that there are way to assign tickets to groups of peoples.

于 2014-03-23T15:03:07.157 回答