Building a Python code review scheduler: review follow-up
In part three of this series, you learned how to save code review request information for later processing. You create a method called read_email
to get an email from the inbox to check whether the reviewer has responded to the code review request. You also implemented error handling in the code review scheduler code.
In this part of the series, you will use your saved code review information and information from your email to check whether the reviewer has responded to the review request. If the request has not been responded to, you will send a follow-up email to the reviewer.
start using
First clone the source code of the third part of this tutorial series.
git clone https://github.com/royagasthyan/CodeReviewer-Part3 CodeReviewer
Modify the config.json
file to include some relevant email addresses and keep the royagasthyan@gmail.com
email address. This is because git has a commit associated with this specific email address, which is required for the code to execute as expected. Modify the SMTP
credentials in the schedule.py
file:
FROM_EMAIL = "your_email_address@gmail.com" FROM_PWD = "your_password"
Navigate to the project directory CodeReviewer
and try executing the following command in the terminal.
python scheduler.py -n 20 -p "project_x"
It should send the code review request to a random developer for review and create a reviewer.json
file containing the review information.
Implement subsequent requests
We first create a followup request method named followup_request
. Within the followup_request
method, read the reviewer.json
file and save the contents in a list. code show as below:
with open('reviewer.json','r') as jfile: review_info = json.load(jfile)
Next, extract the email information using the read_email
method you implemented in the previous tutorial.
email_info = read_email(no_days)
If the reviewer has responded to the review request, there should be an email with the same subject and the Re:
tag in front of it. So, iterate through the list of review messages and compare the review subject to the email subject to see if the reviewer has responded to the request.
for review in review_info: review_replied = false expected_subject = 'RE: ' + review['subject'] for email in email_info: if expected_subject == email['subject']: review_replied = True print 'Reviewer has responded' break;
As shown in the code above, you iterate over the review_info
list and check the review information topic against the email subject to see if the reviewer has replied.
Now, once a reviewer responds to a code review request, you don't need to retain specific review information in the reviewer.json
file. Therefore, create a Python method named Delete_Info
to delete specific review information from the reviewer.json
file. Here's what Delete_Info
looks like:
def Delete_Info(info, id): for i in xrange(len(info)): if info[i]['id'] == id: info.pop(i) break return info
As shown in the code above, you have iterated through the list of review information and deleted entries matching the Id. After removing the information from the file, return to the list.
When replying to a comment message, you need to call the Delete_Info
method. When calling the Delete_Info
method, you need to pass a copy of review_info
so as not to alter the original list of information. You will need the original review information list for later comparison. So import the copy
Python module to create a copy of the original list of comment messages.
from copy import copy
Create a copy of the review_info
list.
review_info_copy = copy(review_info)
When deleting the replied comment information from the original list, pass the copied list to the Delete_Info
method.
review_info_copy = Delete_Info(review_info_copy,review['id'])
This is followup_request
Method:
def followup_request(): with open('reviewer.json','r') as jfile: review_info = json.load(jfile) review_info_copy = copy(review_info) email_info = read_email(no_days) for review in review_info: review_replied = False expected_subject = 'Re: ' + review['subject'] for email in email_info: if expected_subject == email['Subject']: review_replied = True review_info_copy = Delete_Info(review_info_copy,review['id']) break;
Now, once the review_info
list is iterated, you need to check if there are any changes in the reviewer.json
file. If any existing review information has been removed, you will need to update the reviewer.json
file accordingly. So, check if review_info_copy
and review_info
are the same and update the reviewer.json
file.
if review_info_copy != review_info: with open('reviewer.json','w') as outfile: json.dump(review_info_copy,outfile)
This is the complete followup_request
Method:
def followup_request(): with open('reviewer.json','r') as jfile: review_info = json.load(jfile) review_info_copy = copy(review_info) email_info = read_email(no_days) for review in review_info: review_replied = False expected_subject = 'Re: ' + review['subject'] for email in email_info: if expected_subject == email['Subject']: review_replied = True review_info_copy = Delete_Info(review_info_copy,review['id']) break; if review_info_copy != review_info: with open('reviewer.json','w') as outfile: json.dump(review_info_copy,outfile)
Call the followup_request
method to follow up the audit request that has been sent.
try: commits = process_commits() # Added the follow Up Method followup_request() if len(commits) == 0: print 'No commits found ' else: schedule_review_request(commits) except Exception,e: print 'Error occurred. Check log for details.' logger.error(str(datetime.datetime.now()) + " - Error occurred : " + str(e) + "\n") logger.exception(str(e))
Save the above changes. In order to test subsequent functionality, please delete the reviewer.json
file from the project directory. Now run the scheduler to send code review requests to random developers. Check that this information has been saved in the reviewer.json
file.
Require specific developers to respond to code review requests by replying to an email. Now run the scheduler again and this time the scheduler should be able to find the response and remove it from the reviewer.json
file.
发送提醒电子邮件
审核者回复代码审核请求电子邮件后,需要从 reviewer.json
文件中删除该信息,因为您不需要进一步跟踪它。如果审核者尚未回复代码审核请求,您需要发送后续邮件提醒他或她审核请求。
代码审查调度程序将每天运行。当它运行时,您首先需要检查开发人员响应审核请求是否已经过去了一定时间。在项目配置中,您可以设置一个审核周期,在此期间,如果审核者没有回复,调度程序将发送提醒电子邮件。
让我们首先在项目配置中添加配置。在配置文件中添加一个名为 followup_Frequency
的新配置。
{ "name": "project_x", "git_url": "https://github.com/royagasthyan/project_x", "followup_frequency":2, "members": [ "royagasthyan@gmail.com", "samon@gmail.com", "sualonni@gmail.com", "restuni@gmail.com" ] }
因此,当审阅者在 followup_Frequency
天数内没有回复时,您将发送一封提醒电子邮件。读取配置的同时将配置读入全局变量:
for p in main_config: if p['name'] == project: project_url = p['git_url'] project_members = p['members'] followup_frequency = p['followup_frequency'] break
在 followup_request
方法内部,当审稿人在 followup_frequest
天数内没有回复后续请求时,发送提醒邮件。计算自评论发送以来的天数。
review_date = datetime.datetime.strptime(review['sendDate'],'%Y-%m-%d') today = datetime.datetime.today() days_since_review = (today - review_date).days
如果天数大于配置中的后续频率日期,请发送提醒电子邮件。
if not review_replied: if days_since_review > followup_frequency: send_email(review['reviewer'],'Reminder: ' + review['subject'],'\nYou have not responded to the review request\n')
这是完整的 followup_request
方法:
def followup_request(): with open('reviewer.json','r') as jfile: review_info = json.load(jfile) review_info_copy = copy(review_info) email_info = read_email(no_days) for review in review_info: review_date = datetime.datetime.strptime(review['sendDate'],'%Y-%m-%d') today = datetime.datetime.today() days_since_review = (today - review_date).days review_replied = False expected_subject = 'Re: ' + review['subject'] for email in email_info: if expected_subject == email['Subject']: review_replied = True review_info_copy = Delete_Info(review_info_copy,review['id']) break; if not review_replied: if days_since_review > followup_frequency: send_email(review['reviewer'],'Reminder: ' + review['subject'],'\nYou have not responded to the review request\n') if review_info_copy != review_info: with open('reviewer.json','w') as outfile: json.dump(review_info_copy,outfile)
总结
在本教程中,您了解了如何实现跟进代码审核请求的逻辑。您还添加了如果审阅者在一定天数内没有回复电子邮件的情况下发送提醒电子邮件的功能。
这个 Python 代码审查器可以进一步增强以满足您的需求。请分叉存储库并添加新功能,并在下面的评论中告诉我们。
本教程的源代码可在 GitHub 上获取。
The above is the detailed content of Building a Python code review scheduler: review follow-up. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use Go language for code review practice Introduction: In the software development process, code review (CodeReview) is an important practice. By reviewing and analyzing each other's code, team members can identify potential problems, improve code quality, increase teamwork, and share knowledge. This article will introduce how to use Go language for code review practices, and attach code examples. 1. The importance of code review Code review is a best practice to promote code quality. It can find and correct potential errors in the code, improve the code

How to conduct code review and performance optimization in Java development requires specific code examples. In the daily Java development process, code review and performance optimization are very important links. Code review can ensure the quality and maintainability of the code, while performance optimization can improve the operating efficiency and response speed of the system. This article will introduce how to conduct Java code review and performance optimization, and give specific code examples. Code review Code review is the process of checking the code line by line as it is written and fixing potential problems and errors. the following

Python development experience sharing: How to conduct code review and quality assurance Introduction: In the software development process, code review and quality assurance are crucial links. Good code review can improve code quality, reduce errors and defects, and improve program maintainability and scalability. This article will share the experience of code review and quality assurance in Python development from the following aspects. 1. Develop code review specifications Code review is a systematic activity that requires a comprehensive inspection and evaluation of the code. In order to standardize code review

React Code Review Guide: How to Ensure the Quality and Maintainability of Front-End Code Introduction: In today’s software development, front-end code is increasingly important. As a popular front-end development framework, React is widely used in various types of applications. However, due to the flexibility and power of React, writing high-quality and maintainable code can become a challenge. To address this issue, this article will introduce some best practices for React code review and provide some concrete code examples. 1. Code style

In the C# development process, code quality assurance is crucial. The quality of code directly affects the stability, maintainability and scalability of software. As an important quality assurance method, code review plays a role that cannot be ignored in software development. This article will focus on code review considerations in C# development to help developers improve code quality. 1. The purpose and significance of review Code review refers to the process of discovering and correcting existing problems and errors by carefully reading and inspecting the code. Its main purpose is to improve the

Yes, combining code reviews with continuous integration can improve code quality and delivery efficiency. Specific tools include: PHP_CodeSniffer: Check coding style and best practices. PHPStan: Detect errors and unused variables. Psalm: Provides type checking and advanced code analysis.

How to Conduct Code Reviews and Merge Requests in GitLab Code review is an important development practice that can help teams identify potential problems and improve code quality. In GitLab, through the merge request (MergeRequest) function, we can easily conduct code review and merge work. This article explains how to perform code reviews and merge requests in GitLab, while providing specific code examples. Preparation: Please make sure you have created a GitLab project and have the relevant

How to conduct code review of C++ code? Code review is a very important part of the software development process. It can help the development team identify and correct potential errors, improve code quality, and reduce the workload of subsequent maintenance and debugging. For strongly typed static languages like C++, code review is particularly important. Here are some key steps and considerations to help you conduct an effective C++ code review. Set code review standards: Before conducting a code review, the team should jointly develop a code review standard to agree on various errors and violations.
