Add socket support #85
Workflow file for this run
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 workflow will install dependencies, create coverage tests | |
# and run Pytest with coverage reporting | |
name: Pytest and coverage | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
tests_and_coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
- name: Build coverage file | |
run: | | |
pytest --cache-clear --asyncio-mode=auto --cov=custom_components --junitxml=pytest.xml tests/ > pytest-coverage.txt | |
- name: Pytest coverage comment | |
id: coverageComment | |
uses: MishaKav/pytest-coverage-comment@main | |
with: | |
github-token: ${{ secrets.actions_token }} | |
pytest-coverage-path: ./pytest-coverage.txt | |
junitxml-path: ./pytest.xml | |
- name: Check the output coverage | |
run: | | |
echo "Coverage Percentage - ${{ steps.coverageComment.outputs.coverage }}" | |
- name: Check coverage tolerance | |
if: ${{ steps.coverageComment.outputs.coverage < 0.99 }} | |
uses: actions/github-script@v3 | |
with: | |
script: | | |
core.setFailed('Coverage test below tolerance') |