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

13 lines
192 B
Bash
Raw Normal View History

2024-02-24 12:28:55 +01:00
#!/bin/bash
set -eu
if [ $# -lt 1 ]
then
# Start @llama.cpp scenario
behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
2024-02-24 12:28:55 +01:00
else
behave "$@"
fi