tests.sh 197 B

1234567891011
  1. #!/bin/bash
  2. set -eu
  3. if [ $# -lt 1 ]
  4. then
  5. # Start @llama.cpp scenario
  6. behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
  7. else
  8. behave "$@"
  9. fi