mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
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.
15 lines
208 B
Batchfile
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 %*
|
|
)
|