Skip to content

fix: make sure all_rates doesn't have a unit of measure #83

fix: make sure all_rates doesn't have a unit of measure

fix: make sure all_rates doesn't have a unit of measure #83

Workflow file for this run

name: Pull actions
on:
pull_request:
jobs:
validate:
runs-on: "ubuntu-latest"
name: Validate
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.5.3
- name: HACS validation
uses: "hacs/action@main"
with:
category: "integration"
ignore: brands
- name: Hassfest validation
uses: "home-assistant/actions/hassfest@master"
style:
runs-on: "ubuntu-latest"
name: Check style formatting
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.5.3
- name: 🛠️ Set up Python
uses: actions/setup-python@v4.6.1
with:
python-version: "3.x"
- run: python3 -m pip install black
- run: black .
tests:
runs-on: "ubuntu-latest"
name: Run tests
strategy:
matrix:
python-version:
# - "3.10"
- "3.11"
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.5.3
- name: 🛠️ Set up Python
uses: actions/setup-python@v4.6.1
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ matrix.python-version }}
- name: 📦 Install requirements
run: |
pip install tox tox-gh-actions
- name: 🏃 Run tests
run: |
pytest \
-qq \
--timeout=9 \
--durations=10 \
-n auto \
--cov custom_components.openei \
-o console_output_style=count \
-p no:sugar \
--cov-report=xml \
tests
- name: 📤 Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1