Skip to content

Run tests

Run tests #12

Workflow file for this run

name: Run tests
on:
# Allow manually running from Github UI or API.
workflow_dispatch:
# to re-run status checks, mark as draft then ready_for_review.
pull_request:
types: [ready_for_review]
jobs:
pytest-ubuntu:
# Ships with python 3.10. Using it saves time installing it.
runs-on: linux-gpu
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install -e ".[dev]"
pip install fiftyone-db-ubuntu2204
- name: Test with pytest
run: |
pytest