Skip to content

removed file

removed file #18

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main, jeromehardaway/update-code-clean ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run tests with coverage report
env:
TESTING: "true"
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
pytest --cov --cov-report=term-missing