Merge pull request #23 from OpenVoiceOS/release-1.0.5a1 #31
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
name: Run UnitTests | |
on: | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- 'ovos_commonqa/version.py' | |
- 'examples/**' | |
- '.github/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'CHANGELOG.md' | |
- 'MANIFEST.in' | |
- 'README.md' | |
- 'scripts/**' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'ovos_commonqa/version.py' | |
- 'requirements/**' | |
- 'examples/**' | |
- '.github/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'CHANGELOG.md' | |
- 'MANIFEST.in' | |
- 'README.md' | |
- 'scripts/**' | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
strategy: | |
matrix: | |
python-version: [3.9] | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
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 swig | |
python -m pip install build wheel | |
- name: Install repo | |
run: | | |
pip install -e . | |
- name: Install test dependencies | |
run: | | |
pip install -r tests/requirements.txt | |
pip install tests/ovos_tskill_fakewiki | |
- name: Run unittests | |
run: | | |
pytest --cov=ovos_commonqa --cov-report=xml ./tests | |
- name: Upload coverage | |
if: "${{ matrix.python-version == '3.9' }}" | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
files: coverage.xml | |
verbose: true |