2019-06-07 16:38:05 +00:00
|
|
|
# https://dev.azure.com/home-assistant
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
batch: true
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- dev
|
2019-07-12 07:29:55 +00:00
|
|
|
pr:
|
|
|
|
- dev
|
2019-06-09 09:11:29 +00:00
|
|
|
|
2019-06-09 12:26:42 +00:00
|
|
|
resources:
|
|
|
|
containers:
|
|
|
|
- container: 35
|
|
|
|
image: homeassistant/ci-azure:3.5
|
|
|
|
- container: 36
|
|
|
|
image: homeassistant/ci-azure:3.6
|
|
|
|
- container: 37
|
|
|
|
image: homeassistant/ci-azure:3.7
|
2019-06-07 19:16:39 +00:00
|
|
|
variables:
|
|
|
|
- name: ArtifactFeed
|
|
|
|
value: '2df3ae11-3bf6-49bc-a809-ba0d340d6a6d'
|
2019-06-09 09:11:29 +00:00
|
|
|
- name: PythonMain
|
2019-06-09 12:26:42 +00:00
|
|
|
value: '35'
|
2019-07-12 09:27:31 +00:00
|
|
|
- group: codecov
|
2019-06-07 19:16:39 +00:00
|
|
|
|
2019-06-28 17:35:17 +00:00
|
|
|
stages:
|
|
|
|
|
|
|
|
- stage: 'Overview'
|
|
|
|
jobs:
|
|
|
|
- job: 'Lint'
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- script: |
|
2019-06-28 20:08:29 +00:00
|
|
|
python -m venv venv
|
|
|
|
|
|
|
|
. venv/bin/activate
|
2019-06-28 17:35:17 +00:00
|
|
|
pip install flake8
|
2019-06-28 20:08:29 +00:00
|
|
|
displayName: 'Setup Env'
|
|
|
|
- script: |
|
2019-06-28 20:18:52 +00:00
|
|
|
. venv/bin/activate
|
2019-06-28 17:35:17 +00:00
|
|
|
flake8 homeassistant tests script
|
|
|
|
displayName: 'Run flake8'
|
2019-06-28 20:08:29 +00:00
|
|
|
- job: 'Validate'
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
python -m venv venv
|
|
|
|
|
|
|
|
. venv/bin/activate
|
2019-06-28 20:18:52 +00:00
|
|
|
pip install -e .
|
2019-06-28 20:08:29 +00:00
|
|
|
displayName: 'Setup Env'
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
python -m script.hassfest validate
|
|
|
|
displayName: 'Validate manifests'
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
2019-06-28 20:18:52 +00:00
|
|
|
./script/gen_requirements_all.py validate
|
2019-06-28 20:08:29 +00:00
|
|
|
displayName: 'requirements_all validate'
|
2019-06-28 17:35:17 +00:00
|
|
|
|
|
|
|
- stage: 'Tests'
|
2019-06-09 09:11:29 +00:00
|
|
|
dependsOn:
|
2019-06-28 17:35:17 +00:00
|
|
|
- 'Overview'
|
|
|
|
jobs:
|
2019-06-28 20:08:29 +00:00
|
|
|
- job: 'PyTest'
|
2019-06-28 17:35:17 +00:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
strategy:
|
|
|
|
maxParallel: 3
|
|
|
|
matrix:
|
|
|
|
Python35:
|
|
|
|
python.container: '35'
|
|
|
|
Python36:
|
|
|
|
python.container: '36'
|
|
|
|
Python37:
|
|
|
|
python.container: '37'
|
|
|
|
container: $[ variables['python.container'] ]
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
python --version > .cache
|
2019-07-12 10:08:53 +00:00
|
|
|
displayName: 'Set python $(python.container) for requirement cache'
|
2019-06-28 17:35:17 +00:00
|
|
|
- task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
|
|
|
|
displayName: 'Restore artifacts based on Requirements'
|
|
|
|
inputs:
|
|
|
|
keyfile: 'requirements_test_all.txt, .cache'
|
|
|
|
targetfolder: './venv'
|
|
|
|
vstsFeed: '$(ArtifactFeed)'
|
|
|
|
- script: |
|
|
|
|
set -e
|
|
|
|
python -m venv venv
|
|
|
|
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -U pip setuptools
|
|
|
|
pip install -r requirements_test_all.txt -c homeassistant/package_constraints.txt
|
|
|
|
pip install pytest-azurepipelines -c homeassistant/package_constraints.txt
|
|
|
|
displayName: 'Create Virtual Environment & Install Requirements'
|
|
|
|
condition: and(succeeded(), ne(variables['CacheRestored'], 'true'))
|
|
|
|
- task: 1ESLighthouseEng.PipelineArtifactCaching.SaveCacheV1.SaveCache@1
|
|
|
|
displayName: 'Save artifacts based on Requirements'
|
|
|
|
inputs:
|
|
|
|
keyfile: 'requirements_test_all.txt, .cache'
|
|
|
|
targetfolder: './venv'
|
|
|
|
vstsFeed: '$(ArtifactFeed)'
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -e .
|
2019-07-12 10:08:53 +00:00
|
|
|
displayName: 'Install Home Assistant for python $(python.container)'
|
2019-06-28 17:35:17 +00:00
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
2019-07-12 09:27:31 +00:00
|
|
|
pytest --timeout=9 --durations=10 --junitxml=test-results.xml -qq -o console_output_style=count -p no:sugar tests
|
2019-07-12 10:08:53 +00:00
|
|
|
displayName: 'Run pytest for python $(python.container)'
|
2019-07-12 09:27:31 +00:00
|
|
|
condition: and(succeeded(), ne(variables['python.container'], variables['PythonMain']))
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pytest --timeout=9 --durations=10 --junitxml=test-results.xml --cov --cov-report=xml -qq -o console_output_style=count -p no:sugar tests
|
|
|
|
codecov
|
2019-07-12 10:08:53 +00:00
|
|
|
displayName: 'Run pytest for python $(python.container) / coverage'
|
2019-07-12 09:27:31 +00:00
|
|
|
env:
|
|
|
|
CODECOV_TOKEN: '$(codecovToken)'
|
|
|
|
condition: and(succeeded(), eq(variables['python.container'], variables['PythonMain']))
|
2019-06-28 17:35:17 +00:00
|
|
|
- task: PublishTestResults@2
|
|
|
|
condition: succeededOrFailed()
|
|
|
|
inputs:
|
2019-07-12 09:27:31 +00:00
|
|
|
testResultsFiles: 'test-results.xml'
|
2019-07-12 10:08:53 +00:00
|
|
|
testRunTitle: 'Publish test results for Python $(python.container)'
|
2019-07-12 09:27:31 +00:00
|
|
|
- task: PublishCodeCoverageResults@1
|
|
|
|
inputs:
|
|
|
|
codeCoverageTool: cobertura
|
|
|
|
summaryFileLocation: coverage.xml
|
|
|
|
displayName: 'publish coverage artifact'
|
|
|
|
condition: and(succeeded(), eq(variables['python.container'], variables['PythonMain']))
|
2019-06-28 17:35:17 +00:00
|
|
|
|
|
|
|
- stage: 'FullCheck'
|
2019-06-09 13:32:30 +00:00
|
|
|
dependsOn:
|
2019-06-28 17:35:17 +00:00
|
|
|
- 'Overview'
|
|
|
|
jobs:
|
|
|
|
- job: 'Pytlint'
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
python --version > .cache
|
|
|
|
displayName: 'Set python $(python.version) for requirement cache'
|
|
|
|
- task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
|
|
|
|
displayName: 'Restore artifacts based on Requirements'
|
|
|
|
inputs:
|
|
|
|
keyfile: 'requirements_all.txt, requirements_test.txt, .cache'
|
|
|
|
targetfolder: './venv'
|
|
|
|
vstsFeed: '$(ArtifactFeed)'
|
|
|
|
- script: |
|
|
|
|
set -e
|
|
|
|
python -m venv venv
|
|
|
|
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -U pip setuptools
|
|
|
|
pip install -r requirements_all.txt -c homeassistant/package_constraints.txt
|
|
|
|
pip install -r requirements_test.txt -c homeassistant/package_constraints.txt
|
|
|
|
displayName: 'Create Virtual Environment & Install Requirements'
|
|
|
|
condition: and(succeeded(), ne(variables['CacheRestored'], 'true'))
|
|
|
|
- task: 1ESLighthouseEng.PipelineArtifactCaching.SaveCacheV1.SaveCache@1
|
|
|
|
displayName: 'Save artifacts based on Requirements'
|
|
|
|
inputs:
|
|
|
|
keyfile: 'requirements_all.txt, requirements_test.txt, .cache'
|
|
|
|
targetfolder: './venv'
|
|
|
|
vstsFeed: '$(ArtifactFeed)'
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -e .
|
2019-07-12 10:08:53 +00:00
|
|
|
displayName: 'Install Home Assistant for python $(PythonMain)'
|
2019-06-28 17:35:17 +00:00
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pylint homeassistant
|
|
|
|
displayName: 'Run pylint'
|
2019-06-28 20:31:27 +00:00
|
|
|
- job: 'Mypy'
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
python -m venv venv
|
|
|
|
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -r requirements_test.txt
|
|
|
|
displayName: 'Setup Env'
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
TYPING_FILES=$(cat mypyrc)
|
|
|
|
mypy $TYPING_FILES
|
|
|
|
displayName: 'Run mypy'
|