13 lines
336 B
Bash
Executable File
13 lines
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Always run from the directory where this script lives
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
# Execute the tests
|
|
bash ./tests/test_finish.sh
|
|
|
|
# Also try the local Ollama end-to-end test (skips if Ollama not running)
|
|
bash ./tests/test_finish_ollama.sh
|