summaryrefslogtreecommitdiff
path: root/docker-entry.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker-entry.sh')
-rwxr-xr-xdocker-entry.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/docker-entry.sh b/docker-entry.sh
deleted file mode 100755
index dc119dc..0000000
--- a/docker-entry.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/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
-