summaryrefslogtreecommitdiff
path: root/tools/create-pyenv.sh
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-02 19:51:41 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-02 19:51:41 -0500
commitf7eede23de6f78b2b33b477b2b4c5451141825d5 (patch)
treed698a92272b8e4a8428b82d9a21f3e98ed267a6d /tools/create-pyenv.sh
parent32c722d50943bbdeba65a77d5e94f8692cf75f3c (diff)
Add setup for coverage and cppcheck.
Diffstat (limited to 'tools/create-pyenv.sh')
-rwxr-xr-xtools/create-pyenv.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/create-pyenv.sh b/tools/create-pyenv.sh
new file mode 100755
index 0000000..64b1fbf
--- /dev/null
+++ b/tools/create-pyenv.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+PROJ_ROOT=$(git rev-parse --show-toplevel)
+cd $PROJ_ROOT
+
+python3 -m venv fudenv
+. fudenv/bin/activate
+pip install cppcheck-codequality
+deactivate