From eee5006a688c83e69ae39f4687296e5f1b229a56 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 21 Jan 2021 19:34:47 +0000 Subject: [PATCH] tests: Avoid double docker pull on Azure Pipes (cherry picked from commit adbed36dd9fc71fc9ac0cfee32e8dd90d93ac36a) --- .ci/prep_azure.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.ci/prep_azure.py b/.ci/prep_azure.py index 344564e8..40cebe3a 100755 --- a/.ci/prep_azure.py +++ b/.ci/prep_azure.py @@ -43,12 +43,4 @@ if ci_lib.have_apt(): .format(pv=os.environ['PYTHONVERSION']) ]) - -if ci_lib.have_docker(): - batches.extend( - ['docker pull %s' % (ci_lib.image_for_distro(distro),)] - for distro in ci_lib.DISTROS - ) - - ci_lib.run_batches(batches)