Skip to content

[AGPT-588] Add integration test to CI #819

[AGPT-588] Add integration test to CI

[AGPT-588] Add integration test to CI #819

Workflow file for this run

name: Python Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main, dev ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set Environment and Install Dependencies
uses: ./setup-env
- name: Test with pytest
run: poetry run pytest --cov .
env:
DB_USER: ${{ secrets.DB_USER }}
DB_PASS: ${{ secrets.DB_PASS }}
DB_NAME: ${{ secrets.DB_NAME }}
DB_PORT: 5432
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
RUN_ENV: local
PORT: 8080