Files
platz/bin/run_tests.bat
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
282 B
Batchfile

@echo off
REM ================================================================
REM Fuehrt die unittest-Suite in tests/ aus
REM ================================================================
call "%~dp0setenv.bat"
python -m unittest discover -s "%PLATZ%\tests" -p "test_*.py" -v