You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,9 @@ Before working on a contribution (a new feature or a fix) make sure you can't fi
113
113
3. Clone the forked repository locally.
114
114
4. Create a clean python env and install requirements with pip: `pip install -r requirements/main.txt -r requirements/dev.txt -r requirements/release.txt`
115
115
5. Create a new branch with your fix / feature from the **develop** branch.
116
-
6. Create a pull request from your new branch to the **develop** branch.
116
+
6. Check that your code pass the tests / design new unit tests: `python -m unittest`.
117
+
7. Verify your tests coverage with `./coverage.sh` (additionaly you can generate xml report and use VSCode Coverage gutter to identify untested lines with `./coverage.sh xml`).
118
+
8. Create a pull request from your new branch to the **develop** branch.
0 commit comments