GildedRose-Refactoring-Kata/start_texttest_from_python.bat
Ahmed Sameh Elsawalhy 09005bc03a docs: improve Windows setup instructions for TextTest with Python
Fixes issue where newer versions of texttest produce .exe files instead of .py files. Updated start_texttest_from_python.bat to use texttestc.exe instead of texttestc.py. Also enhanced documentation for Windows users with recommendations for tools like Meld and fc.
2025-10-28 22:13:36 +03:00

15 lines
208 B
Batchfile

set TEXTTEST_HOME=%~dp0
cd %TEXTTEST_HOME%
if not exist "venv" (
py -m venv venv
)
venv\Scripts\pip install texttest
if %ERRORLEVEL% GEQ 1 (
pause
) else (
venv\Scripts\texttestc.exe -con %*
)