From d6cd4e826cc0568ec4453dc5d26e3d380f6b3912 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 11 Jan 2022 09:53:07 -0500 Subject: [PATCH] Ensure pip3 is installed before installing email_validator --- tests/system-setup/setup-funcs.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/system-setup/setup-funcs.sh b/tests/system-setup/setup-funcs.sh index 8ec75826..07821a29 100755 --- a/tests/system-setup/setup-funcs.sh +++ b/tests/system-setup/setup-funcs.sh @@ -229,6 +229,8 @@ miab_ldap_install() { # in non-interactive mode if [ ! -z "${NONINTERACTIVE:-}" ]; then H2 "Install email_validator python3 module" + wait_for_apt + apt-get install -y -qq python3-pip || die "Unable to install pip3!" pip3 install -q "email_validator>=1.0.0" || die "Unable to install email_validator python3 module!" fi