Changes
Page history
Create How to commit and submit a merge request
authored
Jul 16, 2024
by
Alexis GAMELIN
Show whitespace changes
Inline
Side-by-side
How-to-commit-and-submit-a-merge-request.md
0 → 100644
View page @
673657b8
The develop branch accepts merge request with new features.
1.
Create a new local branch from the develop branch (with all the features intended to be included in the new commit).
2.
Go into mbtrack2 root folder.
3.
Run formatters and test inside poetry:
*
`poetry env use python`
*
`poetry install`
*
Run the isort formatter:
`poetry run isort .`
*
Run the yapf formatter:
`poetry run yapf -ir mbtrack2`
*
Check that the tests run without errors:
`poetry run pytest`
4.
If all tests run successfully:
*
Commit changes with a commit message
*
Push commit to the repo
*
Create the merge request
\ No newline at end of file