Skip to content

Merge pull request #65 from jvm123/feat-help-and-visualizer-ui-improv… #187

Merge pull request #65 from jvm123/feat-help-and-visualizer-ui-improv…

Merge pull request #65 from jvm123/feat-help-and-visualizer-ui-improv… #187

Workflow file for this run

name: Python Unit Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
# Install test dependencies
pip install pytest numpy
- name: Run unit tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
python -m unittest discover -s tests -p "test_*.py" -v