Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@eff.org>2022-08-30 01:50:44 +0300
committerBrad Warren <bmw@eff.org>2022-08-30 01:50:44 +0300
commite59ebca0d6d6ea7249fd2650cc1baa2bb99e6fd3 (patch)
treee7390dd6375928e287a622173d519cffb718fcff
parent8c3d99d3a76c84317c73368ce49c01f181a09f28 (diff)
-rw-r--r--.azure-pipelines/templates/steps/tox-steps.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.azure-pipelines/templates/steps/tox-steps.yml b/.azure-pipelines/templates/steps/tox-steps.yml
index 3e5fb995d..fbda960a5 100644
--- a/.azure-pipelines/templates/steps/tox-steps.yml
+++ b/.azure-pipelines/templates/steps/tox-steps.yml
@@ -12,7 +12,7 @@ steps:
set -e
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
- python-dev \
+ python3-dev \
gcc \
libaugeas0 \
libssl-dev \
@@ -36,8 +36,8 @@ steps:
# problems with its lack of real dependency resolution.
- bash: |
set -e
- python tools/pipstrap.py
- python tools/pip_install.py -I tox virtualenv
+ python3 tools/pipstrap.py
+ python3 tools/pip_install.py -I tox virtualenv
displayName: Install runtime dependencies
- task: DownloadSecureFile@1
name: testFarmPem
@@ -49,7 +49,7 @@ steps:
export TARGET_BRANCH="`echo "${BUILD_SOURCEBRANCH}" | sed -E 's!refs/(heads|tags)/!!g'`"
[ -z "${SYSTEM_PULLREQUEST_TARGETBRANCH}" ] || export TARGET_BRANCH="${SYSTEM_PULLREQUEST_TARGETBRANCH}"
env
- python -m tox
+ python3 -m tox
env:
AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID)
AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY)