6 Star 8 Fork 6

Gitee 极速下载/UIS-RNN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/google/uis-rnn
克隆/下载
run_tests.sh 510 Bytes
一键复制 编辑 原始数据 按行查看 历史
quangoogle 提交于 2021-07-26 21:43 . Remove travis
#!/bin/bash
set -o errexit
# Get project path.
PROJECT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Add project modules to PYTHONPATH.
if [[ "${PYTHONPATH}" != *"${PROJECT_PATH}"* ]]; then
export PYTHONPATH="${PYTHONPATH}:${PROJECT_PATH}"
fi
pushd ${PROJECT_PATH}
rm -f .coverage
# Run tests.
for TEST_FILE in $(find tests -name "*_test.py"); do
echo "Running tests in ${TEST_FILE}"
python3 -m coverage run -a ${TEST_FILE}
done
echo "All tests passed!"
popd
python3 -m codecov
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/UIS-RNN.git
git@gitee.com:mirrors/UIS-RNN.git
mirrors
UIS-RNN
UIS-RNN
master

搜索帮助