Skip to content

Files

Latest commit

c89eefe · Feb 25, 2025

History

History
29 lines (18 loc) · 804 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (18 loc) · 804 Bytes

Quality Gates

Virtual Python Environment

Setup a virtual Python environment. Please check on your own, which one to use and how to setup the environment. Below venvis used on a Debian 12 machine.

sudo apt install python3-venv

Create a virtual environment.

python3 -m venv .venv

Ativate the virtual environment.

source .venv/bin/activate

Install pre-commit

Please check the information about the pre-commit tool and follow the install steps given on the project page. Also check the .pre-commit-config.yaml to see which checks are currently used.

Install detect-secrets

Please check the information about the detect-secrets tool and follow the install steps given on the project page.