Files
yu-zhi-ran/tests/test_runner.sh
T
lt e1ba31afda 版本1.0.4 - 发布前准备
- 修复system.py缩进错误
- 优化前端页面样式(待重构)
- 改进API接口结构
- 完善文档和自动化脚本
- 平台基本功能稳定运行
2026-04-29 09:32:43 +08:00

16 lines
455 B
Bash
Executable File

#!/bin/bash
set -e
cd /root/openclaw-workspace/projects/yu-zhi-ran
if [ "$1" == "publisher" ]; then
echo "=== Testing publisher ==="
python3 scripts/publisher.py
echo "=== Publisher exit code: $? ==="
elif [ "$1" == "creator" ]; then
echo "=== Testing creator ==="
python3 scripts/creator.py
echo "=== Creator exit code: $? ==="
else
echo "=== Testing collector ==="
python3 scripts/collector.py
echo "=== Collector exit code: $? ==="
fi