GildedRose-Refactoring-Kata/start_texttest.sh
2025-09-19 12:43:46 +03:00

8 lines
127 B
Bash
Executable File

#!/bin/sh
if [ ! -d "venv" ]; then
python3 -m venv venv
fi
venv/bin/pip install texttest
venv/bin/texttest -d . -con "$@"