GildedRose-Refactoring-Kata/start_texttest.sh
2025-01-15 21:18:30 +01: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 "$@"