From 61a86960154e141ffef3668bc5d109608a215ee3 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 6 Apr 2024 07:29:54 +0200 Subject: [PATCH] Updated Contributions (markdown) --- Contributions.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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 ... ```