From 6958c265470a7a70ab6a113852ea560bee32fa6f Mon Sep 17 00:00:00 2001 From: Ravi Peters Date: Fri, 7 Jun 2024 15:15:14 +0200 Subject: [PATCH] Update README-dev.md --- README-dev.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README-dev.md b/README-dev.md index a7e2cf98..c14ba8f4 100644 --- a/README-dev.md +++ b/README-dev.md @@ -20,6 +20,13 @@ The commit hooks are configured in `.pre-commit-config.yaml`. The `pre-commit` GitHub Action and `.pre-commit-config.yaml` configuration runs checks the changed lines with clang-format and reports if there is anything problematic with the formatting. +To run pre-commit manually: + +``` +pip install -e requirements.txt +pre-commit run -a +``` + ## Testing Tests are run with `CTest`, which either runs the test executables directly, or delegates testing to `pytest`.