-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from pllim/azure-part-deux
TST: Finish moving to Azure CI
- Loading branch information
Showing
6 changed files
with
139 additions
and
242 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
trigger: | ||
- master | ||
|
||
jobs: | ||
- template: azure-templates.yml | ||
parameters: | ||
name: 'Nightly' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,107 @@ | ||
# Python package | ||
# Create and test a Python package on multiple Python versions. | ||
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/languages/python | ||
|
||
trigger: | ||
- master | ||
|
||
jobs: | ||
- job: 'EggInfo' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.x' | ||
architecture: 'x64' | ||
|
||
# Make sure that egg_info works without dependencies | ||
- script: | | ||
python -m pip install --upgrade pip setuptools | ||
python setup.py egg_info | ||
displayName: 'egg_info' | ||
- job: 'Test' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
strategy: | ||
matrix: | ||
Python37: | ||
python.version: '3.7' | ||
maxParallel: 4 | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '$(python.version)' | ||
architecture: 'x64' | ||
|
||
- script: | | ||
sudo apt-get install libxml2-utils | ||
python -m pip install --upgrade pip setuptools | ||
pip install numpy scipy astropy pytest-astropy | ||
python setup.py test | ||
displayName: 'Run tests' | ||
- job: 'Doc' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.6' | ||
architecture: 'x64' | ||
|
||
- script: | | ||
sudo apt-get install graphviz | ||
python -m pip install --upgrade pip setuptools | ||
pip install numpy scipy matplotlib astropy sphinx-astropy | ||
python setup.py build_docs -w | ||
displayName: 'Doc build' | ||
# DEV NOTE: | ||
# Not very useful like this because I have to sign in with Microsoft account, | ||
# download a ZIP file, unzip on local disk, and then only I can preview the | ||
# HTML pages. Was hoping for direct preview by clicking URL like CircleCI. | ||
# | ||
# - task: PublishPipelineArtifact@0 | ||
# inputs: | ||
# artifactName: 'htmlDocs' | ||
# targetPath: 'docs/_build/html' | ||
|
||
- job: 'PEP8' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.x' | ||
architecture: 'x64' | ||
|
||
- script: | | ||
python -m pip install --upgrade pip setuptools | ||
pip install flake8 | ||
flake8 synphot --count | ||
displayName: 'PEP 8 check' | ||
stages: | ||
- stage: Initial | ||
jobs: | ||
- job: 'EggInfo' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
|
||
# Make sure that egg_info works without dependencies | ||
- script: | | ||
python -m pip install --upgrade pip setuptools | ||
python setup.py egg_info | ||
displayName: 'egg_info' | ||
- job: 'PEP8' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.x' | ||
|
||
- script: | | ||
python -m pip install --upgrade pip setuptools | ||
pip install flake8 | ||
flake8 synphot --count | ||
displayName: 'PEP 8 check' | ||
- template: azure-templates.yml | ||
|
||
- stage: Comprehensive | ||
dependsOn: Initial | ||
condition: succeeded() | ||
jobs: | ||
- job: 'Coverage' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
strategy: | ||
maxParallel: 4 | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
|
||
- script: | | ||
sudo apt-get install libxml2-utils | ||
python -m pip install --upgrade pip setuptools | ||
pip install numpy scipy astropy pytest-astropy codecov | ||
python setup.py test --coverage --open-files --remote-data | ||
displayName: 'Run tests' | ||
- script: codecov -t $codecov_token | ||
env: | ||
codecov_token: $(CODECOV_TOKEN) | ||
displayName: 'Calculate coverage' | ||
|
||
- template: azure-templates.yml | ||
parameters: | ||
name: 'LTS_Astropy' | ||
numpyCmd: 'pip install numpy==1.15.4' | ||
astropyCmd: 'pip install astropy==2.0.12' | ||
pythonVersion: '3.6' | ||
|
||
- template: azure-templates.yml | ||
parameters: | ||
name: 'Dev_Astropy' | ||
astropyCmd: 'pip install git+https://github.com/astropy/astropy.git@master#egg=astropy' | ||
|
||
- template: azure-templates.yml | ||
parameters: | ||
name: 'Windows' | ||
vmImage: 'vs2017-win2016' | ||
|
||
- template: azure-templates.yml | ||
parameters: | ||
name: 'OSX' | ||
vmImage: 'macOS-10.13' | ||
|
||
- job: 'Doc' | ||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.6' | ||
|
||
- script: | | ||
sudo apt-get install graphviz | ||
python -m pip install --upgrade pip setuptools | ||
pip install numpy scipy matplotlib astropy sphinx-astropy | ||
python setup.py build_docs -w | ||
displayName: 'Doc build' | ||
# DEV NOTE: | ||
# Not very useful like this because I have to sign in with Microsoft account, | ||
# download a ZIP file, unzip on local disk, and then only I can preview the | ||
# HTML pages. Was hoping for direct preview by clicking URL like CircleCI. | ||
# | ||
# - task: PublishPipelineArtifact@0 | ||
# inputs: | ||
# artifactName: 'htmlDocs' | ||
# targetPath: 'docs/_build/html' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
parameters: | ||
name: 'Default' # Defaults for any parameters that aren't specified | ||
vmImage: 'Ubuntu-16.04' | ||
numpyCmd: 'pip install numpy' | ||
astropyCmd: 'pip install astropy' | ||
pythonVersion: '3.7' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
strategy: | ||
maxParallel: 4 | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: ${{ parameters.pythonVersion }} | ||
architecture: 'x64' | ||
|
||
- script: | | ||
sudo apt-get install libxml2-utils | ||
python -m pip install --upgrade pip setuptools | ||
${{ parameters.numpyCmd }} | ||
pip install scipy pytest-astropy | ||
${{ parameters.astropyCmd }} | ||
python setup.py test --open-files | ||
displayName: 'Run tests' |