Remove test jobs, keep lint

This commit is contained in:
Hugo 2019-02-21 20:45:48 +02:00
parent 1f6cc7a9a4
commit 03fc6c05e8
2 changed files with 0 additions and 82 deletions

View File

@ -1,49 +0,0 @@
parameters:
name: '' # defaults for any parameters that aren't specified
vmImage: ''
jobs:
- job: ${{ parameters.name }}
pool:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
python -m pip install --upgrade freezegun pytest pytest-cov requests_mock
python -m pip install -e .
displayName: 'Install dependencies'
- script: |
pytest --cov pypistats --junitxml=junit/test-results.xml
displayName: 'Unit tests'
- script: |
pypistats --help
pypistats recent --help
displayName: 'Test runs'
- script: |
python -m pip install --upgrade codecov
codecov --name "Python $(python.version)" --build $(Build.BuildNumber)
condition: succeeded()
displayName: 'Upload to Codecov'
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'Python $(python.version)'
condition: succeededOrFailed()

View File

@ -10,36 +10,3 @@ jobs:
parameters:
name: Lint
vmImage: 'Ubuntu-16.04'
- template: .azure-pipelines/jobs/test.yml
parameters:
name: Linux
vmImage: 'Ubuntu-16.04'
- template: .azure-pipelines/jobs/test.yml
parameters:
name: macOS
vmImage: 'xcode9-macos10.13'
- template: .azure-pipelines/jobs/test.yml
parameters:
name: Windows
vmImage: 'vs2017-win2016'
- job: Publish
dependsOn:
- Lint
- Linux
- macOS
- Windows
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
architecture: 'x64'
- script: python setup.py sdist
displayName: 'Build sdist'