Skip to content

Commit 85a48d9

Browse files
author
Mario Piqué Martinez
committed
added: new tips to good practices ICIQ-DMP documentation
1 parent 1c26d4a commit 85a48d9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

_posts/iMarina/Developer-Guide/2025-07-04-Programming_Standard.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Tests can be executed locally with:
137137

138138
Install the pytest library we will use to create and run the tests.
139139
```shell
140-
pip install pytest
140+
pip install pytest
141141
```
142142

143143
### Test creation:
@@ -346,4 +346,10 @@ In the `develop` branch, the necessary tests can be carried out without any prob
346346

347347
- Synchronize with `develop` regularly to avoid conflicts.
348348

349+
- Always pull the latest changes before starting new work.
350+
- Use clear and descriptive commit messages (example: `ADDED`, `TEST`, `FIX`)
351+
- Never commit **secrets**, **credentials**, or environment variables.
352+
- Review your changes locally before pushing (`git status`)
353+
- Prefer **Pull Requests** for all merges to ensure peer review and automated testing.
354+
349355
<!-- TODO -->

0 commit comments

Comments
 (0)