From 2d85e6f235ed9bab59d1d73124fd3ae5477bc4ff Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Fri, 12 Mar 2021 16:07:06 -0500 Subject: [PATCH] entrypoint: remove GO_CEPH_TEST_REQUIRE_MOUNT environment var This env var is no longer used, we can drop it from the entrypoint script. Signed-off-by: John Mulligan --- entrypoint.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 82b5e4a..f84c2c5 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -12,9 +12,6 @@ BUILD_TAGS="" RESULTS_DIR=/results CEPH_CONF=/tmp/ceph/ceph.conf -# env vars consumed by go code directly. -# set defaults if they are currently unset in the environment -: "${GO_CEPH_TEST_REQUIRE_MOUNT:=yes}" # Default env vars that are not currently changed by this script # but can be used to change the test behavior: @@ -182,7 +179,7 @@ post_all_tests() { test_go_ceph() { mkdir -p /tmp/ceph show "${MICRO_OSD_PATH}" /tmp/ceph - export CEPH_CONF GO_CEPH_TEST_REQUIRE_MOUNT + export CEPH_CONF if [[ ${TEST_RUN} == NONE ]]; then echo "skipping test execution"