Skip to content

Fix service call for relative only custom range (#482) #365

Fix service call for relative only custom range (#482)

Fix service call for relative only custom range (#482) #365

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
tags-ignore:
- 'v*'
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: Install dependencies
run: pip install -r requirements_dev.txt
- name: Flake8 lint
uses: TrueBrain/actions-flake8@v2
with:
path: custom_components
- name: Flake8 lint tests
uses: TrueBrain/actions-flake8@v2
with:
path: tests
- name: Verify import sorting
run: isort --diff --check-only tests custom_components
tests:
name: Run tests (${{ matrix.ha-version }})
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ha-version: '2022.5'
pytest-component-version: '0.9.0'
python-version: '3.9'
- ha-version: '2022.6'
pytest-component-version: '0.9.9'
python-version: '3.9'
- ha-version: '2022.7'
pytest-component-version: '0.10.1'
python-version: '3.10'
- ha-version: '2022.8'
pytest-component-version: '0.11.12'
python-version: '3.10'
latest: true
- ha-version: '2022.9'
pytest-component-version: '0.11.26'
python-version: '3.10'
- ha-version: '2022.10'
pytest-component-version: '0.12.3'
python-version: '3.10'
latest: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest-homeassistant-custom-component==${{ matrix.pytest-component-version }} \
aiohttp-cors==0.7.0
- name: Test with pytest
run: |
pytest \
-qq \
--timeout 9 \
--durations 10 \
-n auto \
--cov custom_components.yandex_smart_home \
--cov-report xml \
-o console_output_style=count \
-p no:sugar \
tests
- name: Upload coverage report
uses: codecov/codecov-action@v2
if: ${{ matrix.latest == true }}
validate:
name: Validate for HACS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: HACS validation
uses: hacs/action@main
with:
category: integration