]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
still yet another azure fix attempt
authorBob Halley <halley@dnspython.org>
Wed, 28 Oct 2020 15:43:54 +0000 (08:43 -0700)
committerBob Halley <halley@dnspython.org>
Wed, 28 Oct 2020 15:43:54 +0000 (08:43 -0700)
azure-pipelines.yml

index c3653441ec4085b89ccd12df1079ec0af8ea8707..6c4f8908867df558f47bb82dbf6d6a3dd68c15d1 100644 (file)
@@ -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'