tests.sh 197 Bytes
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
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