1 Star 0 Fork 0

lanyulei / redis-py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-entry.sh 611 Bytes
一键复制 编辑 原始数据 按行查看 历史
Roey Prat 提交于 2020-11-09 18:20 . use github actions instead of travis-CI
#!/bin/bash
# This is the entrypoint for "make test". It invokes Tox. If running
# outside the CI environment, it disables uploading the coverage report to codecov
set -eu
REDIS_MASTER="${REDIS_MASTER_HOST}":"${REDIS_MASTER_PORT}"
echo "Testing against Redis Server: ${REDIS_MASTER}"
# skip the "codecov" env if not running on Travis
if [ "${GITHUB_ACTIONS}" = true ] ; then
echo "Skipping codecov"
export TOX_SKIP_ENV="codecov"
fi
# use the wait-for-it util to ensure the server is running before invoking Tox
util/wait-for-it.sh ${REDIS_MASTER} -- tox -- --redis-url=redis://"${REDIS_MASTER}"/9
1
https://gitee.com/yllan/redis-py.git
git@gitee.com:yllan/redis-py.git
yllan
redis-py
redis-py
master

搜索帮助