Skip to content

Update OVOSAbstractApplication and unit tests (#118) #36

Update OVOSAbstractApplication and unit tests (#118)

Update OVOSAbstractApplication and unit tests (#118) #36

Workflow file for this run

name: Run CodeCov
on:
push:
branches:
- dev
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
env:
PYTHON: '3.9'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev
python -m pip install build wheel
- name: Install test dependencies
run: |
sudo apt install libssl-dev libfann-dev portaudio19-dev libpulse-dev
pip install ovos-core[all]
pip install pytest pytest-timeout pytest-cov adapt-parser~=0.5
- name: Install repo
run: |
pip install .
- name: Generate coverage report
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./ovos_workshop --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
fail_ci_if_error: true
files: ./coverage.xml,!./cache
flags: unittests
name: codecov-umbrella
verbose: true