Skip to content

controller: standardize response format #80

controller: standardize response format

controller: standardize response format #80

Workflow file for this run

name: Controller Unit Tests
on:
pull_request:
branches: [ main, master, develop ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest python-dateutil psycopg2-binary
- name: Run unit tests
run: |
pytest tests/unit/ -v