Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
codebase:contributing [2025/03/25 09:17] – fponzi | codebase:contributing [2025/03/25 09:17] (current) – fponzi | ||
---|---|---|---|
Line 15: | Line 15: | ||
When creating and submitting your changes, closely follow these guidelines: | When creating and submitting your changes, closely follow these guidelines: | ||
- | * **Be surgical:** What is the smallest diff you can make that still accomplishes your goal? Avoid the urge to fix unrelated stylistic issues in a file you are changing. | + | |
- | * **Write tests first:** If you’re changing a specific part of the codebase, first ensure it has good test coverage; if it does, write a few more tests yourself anyway! Writing tests is a great way to learn how the code functions. If possible, submit your tests in a separate PR so their benefits can be realized immediately. We don’t fully subscribe to Test-Driven Development (TDD) but having good existing test coverage of a changed area is a prerequisite to changes being merged. | + | * **Write tests first:** If you’re changing a specific part of the codebase, first ensure it has good test coverage; if it does, write a few more tests yourself anyway! Writing tests is a great way to learn how the code functions. If possible, submit your tests in a separate PR so their benefits can be realized immediately. We don’t fully subscribe to Test-Driven Development (TDD) but having good existing test coverage of a changed area is a prerequisite to changes being merged. |
- | * **Split up your changes:** If parts of your changes provide some benefit by themselves - like additional tests - split them into a separate PR. It is preferable to have several small PRs merged quickly than one large PR that takes longer to review. | + | * **Split up your changes:** If parts of your changes provide some benefit by themselves - like additional tests - split them into a separate PR. It is preferable to have several small PRs merged quickly than one large PR that takes longer to review. |
- | * **Craft your commits well:** This can require advanced git knowledge (see DEVELOPING.md). Treat your commits as forms of communication, | + | * **Craft your commits well:** This can require advanced git knowledge (see DEVELOPING.md). Treat your commits as forms of communication, |
When you open a PR against this repo, the continuous integration (CI) checks will run. These ensure your changes do not break the build & tests. While you can run most of these checks locally, if you’d like to run the CI at any time you can open a PR between your feature branch and the master branch of //your own// fork of this repo. | When you open a PR against this repo, the continuous integration (CI) checks will run. These ensure your changes do not break the build & tests. While you can run most of these checks locally, if you’d like to run the CI at any time you can open a PR between your feature branch and the master branch of //your own// fork of this repo. |