1 Star 0 Fork 0

glaye/sofia-sip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tests.sh 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andrey Volk 提交于 2022-03-29 19:28 . Run tests on Drone CI
#!/bin/bash
# All output will be collected here
TESTSUNITPATH=$PWD/tests/unit
failed_tests=$(find ./ -name *.trs | xargs grep FAIL -l)
if [[ -n $failed_tests ]]
then
echo "FAILED TESTS $failed_tests"
for test in $failed_tests
do
dir="$(dirname "${test}")"
file="$(basename "${test}")"
log="$TESTSUNITPATH/log_run-tests_${dir//\//!}!$file.html";
cat $dir/test-suite.log | ansi2html > $log
done
exit 1
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/glaye/sofia-sip.git
git@gitee.com:glaye/sofia-sip.git
glaye
sofia-sip
sofia-sip
master

搜索帮助