File size: 474 Bytes
9bdf620 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
# Script to test the formatting in prompts.yaml
echo "Starting prompt formatting tests..."
# Set working directory to project root
cd "$(dirname "$0")/.." # Go up one level to project root
echo "Current directory: $(pwd)"
echo "Checking if prompts.yaml exists: $([ -f 'prompts.yaml' ] && echo 'Yes' || echo 'No')"
# Run the chess formatting test
echo "Running chess formatting tests..."
python3 -m tests.test_chess_formatting
echo -e "\nTests completed."
|