test_all.sh 174 B

12345678910
  1. #!/bin/bash
  2. # 测试所有服务
  3. set -e
  4. echo "Testing all services..."
  5. for dir in services/*/; do
  6. echo "Testing $dir"
  7. # cd "$dir" && pytest tests/
  8. done
  9. echo "Done!"