mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 10:46:16 +03:00
Remove test jobs, keep lint
This commit is contained in:
parent
1f6cc7a9a4
commit
03fc6c05e8
|
@ -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()
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue
Block a user