Merge pull request #56 from pipecat-ai/mb/update-006 #18
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: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
group: build-test-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: 'Unit Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
id: setup_python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Cache virtual environment | |
uses: actions/cache@v3 | |
with: | |
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('dev-requirements.txt') }}-${{ hashFiles('test-requirements.txt') }} | |
path: .venv | |
- name: Setup virtual environment | |
run: | | |
python -m venv .venv | |
- name: Install dependencies | |
run: | | |
source .venv/bin/activate | |
python -m pip install --upgrade pip | |
pip install -r dev-requirements.txt -r test-requirements.txt | |
pip install "pipecat-ai[google,openai,anthropic]" | |
pip install -e . | |
- name: Test with pytest | |
run: | | |
source .venv/bin/activate | |
pytest tests/ --cov=pipecat_flows |