DEV Community

Cover image for It's not just a Pull Request
Pablo Aguilar
Pablo Aguilar

Posted on • Originally published at thepabloaguilar.Medium

It's not just a Pull Request

In all my professional experiences so far I've seen a lot of people/teams ignoring the meaning behind a Pull Request (PR), treating it like a kind of bureaucracy to deploy their piece of code.

Sometimes I heard people saying to each other: "I'll open a PR, just accept it because everything is fine". In the end that accepted PR crashed the entire system, I can say that reviewer was as wrong as the reviewee because he was negligent!

We can't automate everything, people think by using automated tests they don't have to do anything else to guarantee the code quality.

By automated tests I mean:

  • Unit Tests, Integration Tests, etc.
  • Static Tests (linters)
  • Static Typing Tests (if you're using a language with optional static type like Python)

In the next topics, I'll try to explain my point of view about code and its quality in the business world!

What is the code?

Every project/codebase is a company's asset.

The code we write isn't ours, the code belongs to the company. We're just momentarily responsible for it, perhaps in a few weeks the project goes to another team, and also another project can reach our team!

Due to the fact that projects can be moved around teams, it's our duty to maintain the quality of the code we write, we need to care about it not because someone wants but because we should, it's a task for everyone who writes code.

Quality

Quality is an empathy thing with who maintained, maintains and will maintain the code.

Many people think that automated tests are enough to guarantee quality but the equation should be something like this:

quality = automated tests + legibility + maintainability + good architecture

Why does the review process exist in the Pull Request if I can automatically merge it after a successful pipeline?

Because we can't guarantee legibility, maintainability, and good architecture. People think that running a linter and having 100% code coverage is enough but it isn't.

Remember, code coverage doesn't mean test quality!

As a team, we're responsible for the code in the main branch. When someone creates other branches to implement a new feature or fix some bug who created the branch and the reviewer are responsible to guarantee the quality of the code that will be merged into the main branch.

Some people say that code is just a way to reach the product, but if that code doesn't have quality and definition, what will this mean to the final product?

Probably a product that no one will want to maintain because it'll be hard to understand how it works.

Pull Request

A Pull Request is a request to add/change the company's asset, it's something that can be in production already, so, we need to guarantee high quality because our customers will be directly affected.

The Pull Request is where we can validate every quality aspect of the code that will be merged into the main branch, trying to reduce any possible mistakes in the code!

One of the most exciting things about Pull Requests is that everyone learns something from both sides (reviewer and reviewee).


Special Thanks to people who reviewed:

Already published on:

Oldest comments (0)