queue: name: Hosted Linux Preview timeoutInMinutes: 300 variables: python.version: '3.7' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' inputs: versionSpec: '$(python.version)' - script: 'azure/install_dependencies.sh && pip install nose coverage codecov' displayName: 'Install dependencies' - script: 'python setup.py nosetests' displayName: Unit tests - script: 'codecov -t $(codecov.token)' displayName: Upload coverage