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: |
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'