Skip to content

Instead of writing directly to CSV files, post to the Gradio server and have the UI write to a .sqlite db #37

Instead of writing directly to CSV files, post to the Gradio server and have the UI write to a .sqlite db

Instead of writing directly to CSV files, post to the Gradio server and have the UI write to a .sqlite db #37

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run tests
run: |
pytest