Files
platz/bin/run_tests.sh
T
Michael Stangl 0232e54f37 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>
2026-07-09 12:44:36 +02:00

9 lines
304 B
Bash

#!/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