#!/bin/bash # 运行所有pytest测试 echo "🧪 运行全面测试套件" echo "====================" echo "📦 移动系统测试..." uv run pytest tests/test_comprehensive_movement.py -v echo "" echo "⏱️ 回合和资源系统测试..." uv run pytest tests/test_turn_and_resources.py -v echo "" echo "🎯 运行所有pytest测试..." uv run pytest tests/test_comprehensive_movement.py tests/test_turn_and_resources.py -v echo "" echo "✅ 测试完成!"