erste Fassung einer Teststation implementiert. Referenzfiles müssen noch überprüft werden

This commit is contained in:
2025-09-19 17:24:03 +02:00
parent 22bb2ad163
commit fa8643b376
22 changed files with 8297 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
@echo off
REM Test runner batch script for kabellaengen project
REM Calls run_tests.py to execute all tests
call %~dp0setenv.bat
CALL manage_interpreter.bat activate_interpreter
if %ERRORLEVEL% NEQ 0 (
echo.
echo Failed to activate the Python interpreter!
pause
exit /B 1
)
python %PROJECT_LIB%\run_tests.py %*
if %ERRORLEVEL% NEQ 0 (
echo.
echo Tests failed!
CALL manage_interpreter.bat deactivate_interpreter
pause
exit /B 1
) else (
echo.
echo All tests passed!
CALL manage_interpreter.bat deactivate_interpreter
pause
exit /B 0
)