Skip to content

remove no more existing device/template from cache #164

remove no more existing device/template from cache

remove no more existing device/template from cache #164

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools
- name: Lint with flake8
run: |
flake8 pyfritzhome --count --show-source --statistics
- name: Run pydocstyle for analysising with Python docstring conventions.
run: pydocstyle
- name: Setup
run: python setup.py install
- name: Test
run: pytest --cov=pyfritzhome --cov-report=lcov
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.test_number }}
parallel: true
path-to-lcov: coverage.lcov
finish:
needs: tests
runs-on: ubuntu-22.04
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true