# 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." | |