kards-env/run_pytest.sh

19 lines
470 B
Bash
Raw Permalink Normal View History

2025-09-05 17:05:43 +08:00
#!/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 "✅ 测试完成!"