Add run_tests.bat/.sh to run the unittest suite via bin/

Follows the same setenv-based convention as the other bin/ scripts
and runs python -m unittest discover against tests/.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Michael Stangl
2026-07-09 12:44:36 +02:00
parent 9a52fe5550
commit 0232e54f37
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
# ================================================================
# Fuehrt die unittest-Suite in tests/ aus
# ================================================================
source "$(dirname "${BASH_SOURCE[0]}")/setenv.sh"
python -m unittest discover -s "$PLATZ/tests" -p "test_*.py" -v