Some checks failed
🧪 Integration Testing / 🔧 Test Integration (2025.9.4, 3.10) (push) Failing after 32s
🧪 Integration Testing / 🔧 Test Integration (2025.9.4, 3.11) (push) Failing after 14s
🧪 Integration Testing / 🔧 Test Integration (2025.9.4, 3.12) (push) Failing after 15s
🧪 Integration Testing / 🔧 Test Integration (2025.9.4, 3.13) (push) Failing after 1m57s
🧪 Integration Testing / 🔧 Test Integration (2025.9.4, 3.9) (push) Failing after 28s
🛡️ Code Quality & Security Check / 🔍 Code Quality Analysis (push) Failing after 19s
Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
34 lines
930 B
YAML
34 lines
930 B
YAML
name: 🧪 Integration Testing
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test-integration:
|
|
name: 🔧 Test Integration
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.9','3.10','3.11','3.12','3.13']
|
|
home-assistant-version: ['2025.9.4']
|
|
|
|
steps:
|
|
- name: 📥 Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 🐍 Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: 📦 Install Home Assistant ${{ matrix.home-assistant-version }}
|
|
run: |
|
|
pip install homeassistant==${{ matrix.home-assistant-version }}
|
|
pip install pytest pytest-homeassistant-custom-component
|
|
|
|
- name: 🧪 Run Integration Tests
|
|
run: |
|
|
python -m pytest tests/ -v --cov=custom_components/adguard_hub --cov-report=xml |