1 Star 0 Fork 0

航特咨询/isign

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run_tests.sh 429 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash -e
name=$(basename $PWD)
package=$(echo $name | sed 's/-/_/g')
# look for required apps
for app in unzip zip; do
if ! which $app >/dev/null; then
echo "Missing application: $app"
exit 1
fi
done
# run test suite
find . -name '*.pyc' -delete
pushd tests >/dev/null
version=$(python -c "import $package; print ${package}.__version__")
echo "Testing $name v${version}"
nosetests
popd >/dev/null
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shine_share/isign.git
[email protected]:shine_share/isign.git
shine_share
isign
isign
master

搜索帮助