llama.cpp/examples/server/tests/tests.sh

11 lines
84 B
Bash
Raw Normal View History

#!/bin/bash
set -eu
if [ $# -lt 1 ]
then
pytest -v -x
else
pytest "$@"
fi