From 8a5f9bb91b1ee6f18c151458a65b1e23028708ec Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 28 Oct 2020 08:43:54 -0700 Subject: [PATCH] still yet another azure fix attempt --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c3653441..6c4f8908 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,11 +21,11 @@ jobs: displayName: 'Use Python $(python.version)' - script: | - pip install --upgrade pip wheel setuptools + python -m pip install --upgrade pip wheel setuptools displayName: 'Install pip and wheel' - script: | - pip install -e .[dnssec,idna,doh,trio,curio] + python -m pip install -e .[dnssec,idna,doh,trio,curio] displayName: 'Install python dependencies' - script: | @@ -33,7 +33,7 @@ jobs: displayName: 'Install Codecov.Tool' - script: | - pip install pytest pytest-cov pytest-azurepipelines + python -m pip install pytest pytest-cov pytest-azurepipelines pytest --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html displayName: 'pytest' -- 2.47.3