Unexpected Benefits From Shrinking My Pull Requests

Small pull requests help improve the code review process, but making it a priority has helped me improve in several ot her ways.

keywords

software development soft-skills

2018-08-28


Keep pull requests small – this is a well known sentiment among programming teams to improve the code review process. We do this to avoid having our new features and fixes sitting around waiting for peer review. Nobody wants to spend hours reviewing thousands of changed lines of code. It’s just not effective.

Even so, I’ve found myself making exceptions to this best practice. It wasn’t until recently, when these kind of issues were becoming more apparent, that I really started to take this attitude of keeping PR’s small to heart. I invite anyone looking to improve the quality of their code review process to remember this seemingly simple guideline: Keep pull requests small.

Those reviewing the changes will likely realize:

Those submitting the changes will likely realize:

Unexpected Results

When I began to personally enforce the goal of creating small PR’s in my own programming, I realized some neat and unexpected benefits.

1. Organization and Clarity

It’s always a temptation to immediately begin to write code when starting a new task. Sometimes this lack of planning results in wasted time coding and recoding. In some cases we may even feel the need to start over.

Small PR’s help combat this situation because we are forced to break up the task into smaller pieces. To do that, we must try to grasp the task more fully. I feel more organized while writing code because of this.

2. Easier to stay on task

Imagine that you are given a task, and you expect it to take about one week to complete. You decide to do your best to chip away at it until it’s all done, and then submit a PR. Consider the many distractions which we encounter while coding (Slack, YouTube, candy in the break room, The Internet in general…)

In my opinion, it’s hard to stay on task in this scenario. That’s because there’s not really anything dictating your schedule, other than the result of a completed task at the end of the week.

I consider it much easier to stay on task when I can use small iterations of pull requests as personal breakpoints. It’s great to take breaks throughout the day, and I think this gives me a bit more control and stability to appropriately do so.

3. Increased estimation accuracy

One of the most difficult aspects of programming is letting people know when something will be finished. Our project managers are especially eager to know. When estimating delivery dates, we have the opportunity to build trust. Failing to meet a deadline is a discouraging feeling. Frederick P. Brooks, Jr., author of the influential software engineering book, The Mythical Man Month, writes about why this is so difficult. One of the culprits he discusses is optimism.

“All programmers are optimists… The first false assumption that underlies the scheduling of systems programming is that all will go well.”

So, we are optimistic about our code. We think, I’m pretty much done, I just have to write the tests. We don’t expect QA to discover bugs in our code. We count on our giant monster-of-a-pull-request to be swiftly approved by our peers.

A natural byproduct of small PR’s is a more accurate depiction of progress. We still need to write tests, we should still plan on QA finding some kind of bug, and we still need to address concerns that come up during peer review. However, these often overlooked details are easier to deal with in smaller iterations – we’re forced to consider them upfront, which makes estimated delivery dates more accurate.

4. Easier collaboration with teammates

Sometimes we are assigned a task that depends on something that our teammate has already been working on. So, it goes without much explanation that if we merge our code in smaller, more frequent iterations, that the pieces others might need will be available sooner.

5. Test quality improved

Testing is an important part of software development, especially in large applications. Tests allow us to refactor with confidence.

It’s easier to write tests when working in small iterations. Writing tests is time consuming and frustrating when they’re written at the end of a huge task. When I find myself in this position, I start to question the value of writing tests. However, testing can be fun and rewarding when done upfront. My attitude and ability to write good tests has improved from working in small iterations.

Challenges

The biggest challenge in my opinion is to figure out the best way to break up the task in order to be done in smaller, more frequent iterations of change. We might see a task as one large indivisible mass. Flipper is a handy tool for feature flipping in Ruby applications. It can be used as a way to turn features on and off for end-users of the application, but it’s also valuable as a tool for developers to implement small changes without fully replacing exiting parts of the application.

Another challenge to beware of is the possibility of creating “dead code.” Sometimes I intentionally duplicate existing code while refactoring, knowing that I will need to remember to go back and clean it up when I have finished all of my small PR’s. The codebase could possibly become full of old, unused code if I forget to cleanup after myself, so I think it’s important to figure out a good strategy with your team to help combat this.

Conclusion

So, in summary, I have noticed lots of extra benefits as a result of keeping my PR’s small. I feel like a more organized programmer. I find it easier to stay on task throughout the day. I believe my ability to estimate when things will be completed has become more accurate. Collaboration with my team is easier, and finally, my willingness to invest time writing good tests has grown stronger.

The benefits are worth the challenges, and this has helped me improve as a programmer. I’m confident that those who are willing to keep their PR’s small will see similar benefits.