Skip to content

add mute capability check (#28) #28

add mute capability check (#28)

add mute capability check (#28) #28

Workflow file for this run

name: Unit Tests
on:
push:
workflow_dispatch:
jobs:
py_build_tests:
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
with:
python_version: "3.8"
unit_tests:
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev libasound2-dev
python -m pip install build wheel
- name: Install core repo
run: |
pip install -e .
- name: Install test dependencies
run: |
pip install pytest pytest-timeout pytest-cov pytest-mock
- name: Run unittests
run: |
pytest --cov=ovos-PHAL-plugin-alsa --cov-report xml test
# NOTE: additional pytest invocations should also add the --cov-append flag
# or they will overwrite previous invocations' coverage reports
# (for an example, see OVOS Skill Manager's workflow)
- name: Upload coverage
if: "${{ matrix.python-version == '3.9' }}"
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
uses: codecov/codecov-action@v2