diff options
Diffstat (limited to 'docker-entry.sh')
-rwxr-xr-x | docker-entry.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entry.sh b/docker-entry.sh index f63a8c5..dc119dc 100755 --- a/docker-entry.sh +++ b/docker-entry.sh @@ -9,7 +9,7 @@ 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 [ -z ${TRAVIS-} ]; then +if [ "${GITHUB_ACTIONS}" = true ] ; then echo "Skipping codecov" export TOX_SKIP_ENV="codecov" fi |