mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-07-28 03:07:56 +00:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
# 测试所有服务
|
|
set -e
|
|
|
|
echo "Testing all services..."
|
|
for dir in services/*/; do
|
|
echo "Testing $dir"
|
|
# cd "$dir" && pytest tests/
|
|
done
|
|
echo "Done!"
|