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