Jump to: navigation, search

Difference between revisions of "ReviewWorkflowTips"

(Other Tips)
(Tools)
Line 5: Line 5:
 
* git review - The same tool we use for submitting patches for review has some options that assist with the review process.  See the git-review man page for more details.
 
* git review - The same tool we use for submitting patches for review has some options that assist with the review process.  See the git-review man page for more details.
 
* [http://status.openstack.org/reviews/ ReviewDay] - A dashboard that prioritizes reviews based on blueprint/bug priority and automated test results
 
* [http://status.openstack.org/reviews/ ReviewDay] - A dashboard that prioritizes reviews based on blueprint/bug priority and automated test results
* [https://github.com/dolph/next-review next-review] - A command line to help you choose the next review to do, primarily based on its age while automatically skipping what you have already reviewed.
+
* [https://github.com/dolph/next-review next-review] - A command line to help you choose the next review to do, primarily based on its age while automatically skipping what you have already reviewed. The tool can also dump a list sorted by its logic, which is helpful if you want to choose from a sorted list.
* [https://review.openstack.org/#/mine/important/ Import Changes] - A prioritized list of reviews built in to gerrit.
+
* [https://review.openstack.org/#/mine/important/ Important Changes] - A prioritized list of reviews built in to gerrit.
 
* [https://github.com/chmouel/gerrit-download.el/ Emacs Gerrit Download] - An Emacs mode to download and show reviews.
 
* [https://github.com/chmouel/gerrit-download.el/ Emacs Gerrit Download] - An Emacs mode to download and show reviews.
  

Revision as of 16:55, 8 February 2014

Review Workflow Tips

Tools

  • git review - The same tool we use for submitting patches for review has some options that assist with the review process. See the git-review man page for more details.
  • ReviewDay - A dashboard that prioritizes reviews based on blueprint/bug priority and automated test results
  • next-review - A command line to help you choose the next review to do, primarily based on its age while automatically skipping what you have already reviewed. The tool can also dump a list sorted by its logic, which is helpful if you want to choose from a sorted list.
  • Important Changes - A prioritized list of reviews built in to gerrit.
  • Emacs Gerrit Download - An Emacs mode to download and show reviews.

Gerrit Queries

You can create a query that shows you the reviews across multiple projects and branches at the same time. For example:

https://review.openstack.org/#/q/status:open+(project:openstack/nova+OR+project:openstack/python-novaclient+OR+project:openstack/oslo-incubator+OR+project:openstack/oslo.config)+(branch:master+OR+branch:stable/grizzly),n,z

More useful queries: http://lists.openstack.org/pipermail/openstack-dev/2013-September/015705.html

Other Tips