Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:58:54 +08:00
commit 4d6408436e
32 changed files with 3539 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
# Lance tous les tests unitaires du skill git-pr
set -e
TEST_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$TEST_DIR"
echo "🧪 Lancement tests git-pr..."
echo ""
python3 test_milestone_cache.py -v
echo ""
python3 test_project_cache.py -v
echo ""
echo "✅ Tous les tests passés"