Skip to content

Update GUI to pass resource names instead of paths #297

Update GUI to pass resource names instead of paths

Update GUI to pass resource names instead of paths #297

Workflow file for this run

name: Run UnitTests
on:
pull_request:
branches:
- dev
paths-ignore:
- 'ovos_plugin_common_play/version.py'
- 'requirements/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'README.md'
- 'scripts/**'
push:
branches:
- master
paths-ignore:
- 'ovos_plugin_common_play/version.py'
- 'requirements/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'README.md'
- 'scripts/**'
workflow_dispatch:
jobs:
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 libssl-dev libfann-dev portaudio19-dev libpulse-dev
python -m pip install -r requirements/test.txt
- name: Install OCP
run: |
pip install -e .
- name: Install test dependencies
run: |
pip install ./test/ovos-test-mycroft-audio-plugin
pip install ./test/ovos-test-ocp-audio-plugin
- name: Run unittests
run: |
pytest --cov=ovos_plugin_common_play --cov-report xml test/unittests
# 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
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
uses: codecov/codecov-action@v2
unit_tests_mycroft:
needs:
- 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
python -m pip install build wheel
pip install wheel "cython<3.0.0" # TODO: cython patching https://github.com/yaml/pyyaml/issues/724
pip install --no-build-isolation pyyaml~=5.4 # TODO: patching https://github.com/yaml/pyyaml/issues/724
- name: Install core repo
run: |
sudo apt install libssl-dev libfann-dev portaudio19-dev libpulse-dev
pip install git+https://github.com/MycroftAI/mycroft-core
- name: Install OCP
run: |
pip install .
- name: Install test dependencies
run: |
pip install ./test/ovos-test-mycroft-audio-plugin
pip install ./test/ovos-test-ocp-audio-plugin
pip install pytest pytest-timeout pytest-cov
- name: Run mycroft unittests
run: |
pytest --cov-append --cov=ovos_plugin_common_play --cov-report xml test/unittests
# 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
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
uses: codecov/codecov-action@v2