HF_Agents_Final_Project / tests /test_formatting.sh
Yago Bolivar
feat: add tests for chess position analysis and prompt formatting scenarios
9bdf620
raw
history blame contribute delete
474 Bytes
#!/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."