generated from firstof9/integration_blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use
async_forward_entry_setups
for HA 2024.7.x+ (#79)
* fix: use `async_forward_entry_setups` for HA 2024.7.x+ * update tests * more test fixing * use tox for tests * remove old tests * formatting * fix tests * formatting * formatting and linting * fix errors
- Loading branch information
Showing
19 changed files
with
280 additions
and
200 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Pull actions | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
validate: | ||
runs-on: "ubuntu-latest" | ||
name: Validate | ||
steps: | ||
- name: 📥 Checkout the repository | ||
uses: actions/checkout@v4 | ||
|
||
- 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@v4 | ||
- name: 🛠️ Set up Python | ||
uses: actions/setup-python@v5 | ||
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" | ||
- "3.12" | ||
|
||
steps: | ||
- name: 📥 Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: 🛠️ Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
fetch-depth: 2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: 📦 Install requirements | ||
run: | | ||
pip install tox tox-gh-actions | ||
- name: 🏃 Test with tox | ||
run: tox | ||
- name: 📤 Upload coverage to Codecov | ||
uses: "actions/upload-artifact@v4" | ||
with: | ||
name: coverage-data | ||
path: "coverage.xml" | ||
|
||
coverage: | ||
runs-on: ubuntu-latest | ||
needs: tests | ||
steps: | ||
- name: 📥 Checkout the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
- name: 📥 Download coverage data | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: coverage-data | ||
- name: 📤 Upload coverage report | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} # required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
__pycache__ | ||
pythonenv* | ||
.coverage | ||
coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.