Skip to content

Handle None -> null correct as well as gr.update() #52

Handle None -> null correct as well as gr.update()

Handle None -> null correct as well as gr.update() #52

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 gradio
- name: Run tests
run: |
pytest