39 lines
1012 B
YAML
39 lines
1012 B
YAML
name: Run tests and upload coverage
|
|
|
|
on:
|
|
push
|
|
|
|
jobs:
|
|
test:
|
|
name: Run tests and collect coverage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install pytest pytest-cov pytest-asyncio
|
|
mkdir data
|
|
mkdir data/plugins
|
|
mkdir data/config
|
|
mkdir temp
|
|
|
|
- name: Run tests
|
|
run: |
|
|
export LLM_MODEL=${{ secrets.LLM_MODEL }}
|
|
export OPENAI_API_BASE=${{ secrets.OPENAI_API_BASE }}
|
|
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}
|
|
PYTHONPATH=./ pytest --cov=. tests/ -v
|
|
|
|
- name: Upload results to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }} |