fix: the gpt model has no context #42
Workflow file for this run
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: | |
- "version.py" | |
- "requirements.txt" | |
- "examples/**" | |
- ".github/**" | |
- ".gitignore" | |
- "LICENSE" | |
- "CHANGELOG.md" | |
- "MANIFEST.in" | |
- "readme.md" | |
- "scripts/**" | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "version.py" | |
- "requirements.txt" | |
- "examples/**" | |
- ".github/**" | |
- ".gitignore" | |
- "LICENSE" | |
- "CHANGELOG.md" | |
- "MANIFEST.in" | |
- "readme.md" | |
- "scripts/**" | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: [3.8, 3.9, "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
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 | |
- name: Install test dependencies | |
run: | | |
pip install pytest pytest-timeout pytest-cov | |
- name: Install System Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt install libfann-dev | |
- name: Install ovos dependencies | |
run: | | |
pip install --pre ovos-plugin-manager ovos-core[skills_lgpl]>=0.0.8 | |
- name: Install core repo | |
run: | | |
pip install . | |
pip install --pre -U ovos-workshop # 0.0.16a5 required for the class to load properly in unit tests | |
pip list | |
- name: Run unittests | |
run: | | |
pytest --cov=. --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@v4 |