blob: 1c6c5695fcf6548b6cc6974f2f91f83de7ffce46 (
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|passkey' --tags llama.cpp
else
behave "$@"
fi
|