blob: 72a0fbad827dbc6a7c5c9034b05085259d1985b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
else
behave "$@"
fi
|