diff --git a/Contributions.md b/Contributions.md index 0358d01..be31a7c 100644 --- a/Contributions.md +++ b/Contributions.md @@ -6,7 +6,27 @@ In case of bigger changes, please start a discussion first. In any case, before submitting a PR, please run test locally to validate your PR +## Syntax/Code Test + +### Run "flake8" + ``` +flake8 +... +``` + +### Run "isort" + +``` +isort --check --diff . +... +``` + +### Run "pytest" + +``` +python3 setup.py build || exit 1 +python3 setup.py install --root dist || exit 1 pytest ... ```