2019-06-07 16:38:05 +00:00
|
|
|
# https://dev.azure.com/home-assistant
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
batch: true
|
|
|
|
branches:
|
|
|
|
include:
|
2020-04-25 23:54:41 +00:00
|
|
|
- rc
|
|
|
|
- dev
|
|
|
|
- master
|
2019-07-12 07:29:55 +00:00
|
|
|
pr:
|
2019-07-18 21:19:52 +00:00
|
|
|
- rc
|
2019-07-12 07:29:55 +00:00
|
|
|
- dev
|
2019-07-18 21:19:52 +00:00
|
|
|
- master
|
2019-06-09 09:11:29 +00:00
|
|
|
|
2019-06-09 12:26:42 +00:00
|
|
|
resources:
|
|
|
|
containers:
|
2020-04-25 23:54:41 +00:00
|
|
|
- container: 37
|
|
|
|
image: homeassistant/ci-azure:3.7
|
|
|
|
- container: 38
|
|
|
|
image: homeassistant/ci-azure:3.8
|
2019-08-04 12:32:35 +00:00
|
|
|
repositories:
|
|
|
|
- repository: azure
|
|
|
|
type: github
|
2020-04-25 23:54:41 +00:00
|
|
|
name: "home-assistant/ci-azure"
|
|
|
|
endpoint: "home-assistant"
|
2019-06-07 19:16:39 +00:00
|
|
|
variables:
|
2019-06-09 09:11:29 +00:00
|
|
|
- name: PythonMain
|
2020-04-25 23:54:41 +00:00
|
|
|
value: "37"
|
2020-04-27 10:09:31 +00:00
|
|
|
- name: versionHadolint
|
|
|
|
value: "v1.17.6"
|
2019-06-07 19:16:39 +00:00
|
|
|
|
2019-06-28 17:35:17 +00:00
|
|
|
stages:
|
2020-04-25 23:54:41 +00:00
|
|
|
- stage: "Overview"
|
|
|
|
jobs:
|
|
|
|
- job: "Lint"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
|
|
|
keyfile: "requirements_test.txt | homeassistant/package_constraints.txt"
|
|
|
|
build: |
|
|
|
|
python -m venv venv
|
2019-06-28 17:35:17 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
2020-07-11 13:20:14 +00:00
|
|
|
pip install -r requirements_test.txt
|
2020-04-25 23:54:41 +00:00
|
|
|
pre-commit install-hooks
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run --hook-stage manual check-executables-have-shebangs --all-files
|
|
|
|
displayName: "Run executables check"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run codespell --all-files
|
|
|
|
displayName: "Run codespell"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run flake8 --all-files
|
|
|
|
displayName: "Run flake8"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run bandit --all-files
|
|
|
|
displayName: "Run bandit"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run isort --all-files --show-diff-on-failure
|
|
|
|
displayName: "Run isort"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run check-json --all-files
|
|
|
|
displayName: "Run check-json"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run yamllint --all-files
|
|
|
|
displayName: "Run yamllint"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run pyupgrade --all-files --show-diff-on-failure
|
|
|
|
displayName: "Run pyupgrade"
|
|
|
|
# Prettier seems to hang on Azure, unknown why yet.
|
|
|
|
# Temporarily disable the check to no block PRs
|
|
|
|
# - script: |
|
|
|
|
# . venv/bin/activate
|
|
|
|
# pre-commit run prettier --all-files --show-diff-on-failure
|
|
|
|
# displayName: 'Run prettier'
|
|
|
|
- job: "Validate"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
|
|
|
keyfile: "homeassistant/package_constraints.txt"
|
|
|
|
build: |
|
|
|
|
python -m venv venv
|
2019-06-28 20:08:29 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
|
|
|
pip install -e .
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
python -m script.hassfest --action validate
|
|
|
|
displayName: "Validate manifests"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
./script/gen_requirements_all.py validate
|
|
|
|
displayName: "requirements_all validate"
|
|
|
|
- job: "CheckFormat"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
|
|
|
keyfile: "requirements_test.txt | homeassistant/package_constraints.txt"
|
|
|
|
build: |
|
|
|
|
python -m venv venv
|
2019-06-28 20:08:29 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
2020-07-11 13:20:14 +00:00
|
|
|
pip install -r requirements_test.txt
|
2020-04-25 23:54:41 +00:00
|
|
|
pre-commit install-hooks
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run black --all-files --show-diff-on-failure
|
|
|
|
displayName: "Check Black formatting"
|
2020-04-27 10:09:31 +00:00
|
|
|
- job: "Docker"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
steps:
|
|
|
|
- script: sudo docker pull hadolint/hadolint:$(versionHadolint)
|
|
|
|
displayName: "Install Hadolint"
|
|
|
|
- script: |
|
|
|
|
set -e
|
|
|
|
for dockerfile in Dockerfile Dockerfile.dev
|
|
|
|
do
|
|
|
|
echo "Linting: $dockerfile"
|
|
|
|
docker run --rm -i \
|
|
|
|
-v "$(pwd)/.hadolint.yaml:/.hadolint.yaml:ro" \
|
|
|
|
hadolint/hadolint:$(versionHadolint) < "$dockerfile"
|
|
|
|
done
|
|
|
|
displayName: "Run Hadolint"
|
2019-07-30 23:59:12 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
- stage: "Tests"
|
|
|
|
dependsOn:
|
|
|
|
- "Overview"
|
|
|
|
jobs:
|
|
|
|
- job: "PyTest"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
strategy:
|
|
|
|
maxParallel: 3
|
|
|
|
matrix:
|
|
|
|
Python37:
|
|
|
|
python.container: "37"
|
|
|
|
Python38:
|
|
|
|
python.container: "38"
|
|
|
|
container: $[ variables['python.container'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
2020-05-19 17:08:36 +00:00
|
|
|
keyfile: "requirements_test_all.txt | requirements_test.txt | homeassistant/package_constraints.txt"
|
2020-04-25 23:54:41 +00:00
|
|
|
build: |
|
|
|
|
set -e
|
|
|
|
python -m venv venv
|
2019-06-28 17:35:17 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
|
|
|
pip install -U pip setuptools pytest-azurepipelines pytest-xdist -c homeassistant/package_constraints.txt
|
2020-07-11 13:20:14 +00:00
|
|
|
pip install -r requirements_test_all.txt
|
2020-04-25 23:54:41 +00:00
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -e .
|
|
|
|
displayName: "Install Home Assistant"
|
|
|
|
- script: |
|
|
|
|
set -e
|
2019-07-30 23:44:39 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
|
|
|
pytest --timeout=9 --durations=10 -n auto --dist=loadfile -qq -o console_output_style=count -p no:sugar tests
|
|
|
|
script/check_dirty
|
|
|
|
displayName: "Run pytest for python $(python.container)"
|
|
|
|
condition: and(succeeded(), ne(variables['python.container'], variables['PythonMain']))
|
|
|
|
- script: |
|
|
|
|
set -e
|
2019-09-16 08:34:31 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
|
|
|
pytest --timeout=9 --durations=10 -n auto --dist=loadfile --cov homeassistant --cov-report html -qq -o console_output_style=count -p no:sugar tests
|
|
|
|
codecov --token $(codecovToken)
|
|
|
|
script/check_dirty
|
|
|
|
displayName: "Run pytest for python $(python.container) / coverage"
|
|
|
|
condition: and(succeeded(), eq(variables['python.container'], variables['PythonMain']))
|
2019-07-26 14:10:22 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
- stage: "FullCheck"
|
|
|
|
dependsOn:
|
|
|
|
- "Overview"
|
|
|
|
jobs:
|
|
|
|
- job: "Pylint"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
|
|
|
keyfile: "requirements_all.txt | requirements_test.txt | homeassistant/package_constraints.txt"
|
|
|
|
build: |
|
|
|
|
set -e
|
|
|
|
python -m venv venv
|
2019-06-28 17:35:17 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
|
|
|
pip install -U pip setuptools wheel
|
2020-07-11 13:20:14 +00:00
|
|
|
pip install -r requirements_all.txt
|
|
|
|
pip install -r requirements_test.txt
|
2020-04-25 23:54:41 +00:00
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pip install -e .
|
|
|
|
displayName: "Install Home Assistant"
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pylint homeassistant
|
|
|
|
displayName: "Run pylint"
|
|
|
|
- job: "Mypy"
|
|
|
|
pool:
|
|
|
|
vmImage: "ubuntu-latest"
|
|
|
|
container: $[ variables['PythonMain'] ]
|
|
|
|
steps:
|
|
|
|
- template: templates/azp-step-cache.yaml@azure
|
|
|
|
parameters:
|
|
|
|
keyfile: "requirements_test.txt | setup.py | homeassistant/package_constraints.txt"
|
|
|
|
build: |
|
|
|
|
python -m venv venv
|
2019-07-30 23:44:39 +00:00
|
|
|
|
2020-04-25 23:54:41 +00:00
|
|
|
. venv/bin/activate
|
2020-07-11 13:20:14 +00:00
|
|
|
pip install -e . -r requirements_test.txt
|
2020-04-25 23:54:41 +00:00
|
|
|
pre-commit install-hooks
|
|
|
|
- script: |
|
|
|
|
. venv/bin/activate
|
|
|
|
pre-commit run mypy --all-files
|
|
|
|
displayName: "Run mypy"
|