From ed2473400bd2f915c7db40a58c97c1b13d22ff44 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 23 Sep 2020 20:27:41 -0700 Subject: [PATCH] brew is missing postgresql --- .ci/prep_azure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/prep_azure.py b/.ci/prep_azure.py index 41f3b4cc..127dd9e7 100755 --- a/.ci/prep_azure.py +++ b/.ci/prep_azure.py @@ -57,8 +57,8 @@ if ci_lib.have_apt(): # /usr/local/bin/python2.7 already exists! if os.environ['PYTHONVERSION'].startswith('3') and ci_lib.have_brew(): batches.append([ - 'brew install python@{pv}' - .format(pv=os.environ['PYTHONVERSION']) + 'brew install python@{pv} postgresql' + .format(pv=os.environ['PYTHONVERSION']), ]) # setup venv