blob: 17a4e6fc64307d794415f7f7fb3932bf0e2fb265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -eu
if [ $# -lt 1 ]
then
# Start @llama.cpp scenario
behave --summary --stop --no-capture --exclude 'issues|wrong_usages' --tags llama.cpp
else
behave "$@"
fi
|