Mat17892's picture
llamacpp
b664585 verified
raw
history blame
84 Bytes
#!/bin/bash
set -eu
if [ $# -lt 1 ]
then
pytest -v -x
else
pytest "$@"
fi