document_redaction_vlm / test /run_gui_test.bat
seanpedrickcase's picture
Sync: Changed search text tab title
d864d45
raw
history blame
613 Bytes
@echo off
REM Batch script to run GUI tests with conda environment activated
REM This script activates the 'redaction' conda environment and runs the GUI tests
echo Activating conda environment 'redaction'...
call conda activate redaction
if %errorlevel% neq 0 (
echo Failed to activate conda environment 'redaction'
echo Please ensure conda is installed and the 'redaction' environment exists
pause
exit /b 1
)
echo Running GUI tests...
python test_gui_only.py
if %errorlevel% neq 0 (
echo GUI tests failed
pause
exit /b 1
) else (
echo GUI tests passed successfully
)
pause