Codebase list python-procrunner / fb086983-6445-4395-b47d-97f9e23f48c5/main .azure-pipelines / ci.yml
fb086983-6445-4395-b47d-97f9e23f48c5/main

Tree @fb086983-6445-4395-b47d-97f9e23f48c5/main (Download .tar.gz)

ci.yml @fb086983-6445-4395-b47d-97f9e23f48c5/main

6695ca6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
steps:
- task: UsePythonVersion@0
  inputs:
    versionSpec: '$(PYTHON_VERSION)'
  displayName: 'Use Python $(PYTHON_VERSION)'

- script: |
    python -m pip install --upgrade pip
    pip install tox
  displayName: "Set up tox"

- script: |
    tox -e azure
  displayName: "Run tests"

- task: PublishTestResults@2
  condition: succeededOrFailed()
  inputs:
    testResultsFiles: '**/test-*.xml'
    testRunTitle: 'Publish test results for Python $(PYTHON_VERSION)'