Add convenience shell script for running texttests

This commit is contained in:
emily 2023-11-03 14:08:40 +01:00
parent fac3f111ae
commit cf9b6300c7

7
start_texttest.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
if [ ! -d "venv" ]; then
python -m venv venv
fi
venv/bin/pip install texttest
venv/bin/texttest -d . -con "$@"