0232e54f37
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>
9 lines
282 B
Batchfile
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
|