chore: remove deprecated class flagged for removal in 4.0.0 (#400) #209
This file contains hidden or 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 CodeCov | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| env: | |
| PYTHON: '3.9' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.14 | |
| - name: Install System Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt install python3-dev | |
| python -m pip install build wheel | |
| - name: Install repo | |
| run: | | |
| pip install -e . | |
| - name: Install test dependencies | |
| run: | | |
| sudo apt install libssl-dev libfann-dev portaudio19-dev libpulse-dev | |
| pip install -r requirements/test.txt | |
| pip install ./test/end2end/session/skill-ovos-hello-world | |
| pip install ./test/end2end/session/skill-ovos-fallback-unknown | |
| pip install ./test/end2end/session/skill-ovos-fallback-unknownv1 | |
| pip install ./test/end2end/session/skill-converse_test | |
| - name: Generate coverage report | |
| run: | | |
| pytest --cov=./ovos_workshop --cov-report xml test/unittests | |
| pytest --cov-append --cov=ovos_workshop --cov-report xml test/end2end | |
| - 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 |