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

11 lines
84 B
Bash
Raw Normal View History

2024-02-24 12:28:55 +01:00
#!/bin/bash
set -eu
if [ $# -lt 1 ]
then
pytest -v -x
2024-02-24 12:28:55 +01:00
else
pytest "$@"
2024-02-24 12:28:55 +01:00
fi