Skip to content

feat(trackers): Implement OC-SORT #437

feat(trackers): Implement OC-SORT

feat(trackers): Implement OC-SORT #437

Workflow file for this run

name: 🔧 Pytest/Test Workflow
on:
pull_request:
branches: [main, develop]
jobs:
run-tests:
name: Import Test and Pytest Run
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🐍 Install uv and set Python version ${{ matrix.python-version }}
uses: astral-sh/setup-uv@445689ea25e0de0a23313031f5fe577c74ae45a1 # v6.3.0
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
# TODO(https://github.com/astral-sh/setup-uv/issues/226): Remove this.
prune-cache: ${{ matrix.os != 'windows-latest' }}
- name: 🚀 Install Packages
run: uv pip install -r pyproject.toml --group dev --group docs --extra cpu --extra reid
- name: 🧪 Run the Import test
run: uv run python -c "import trackers"
- name: 🧪 Run the Test
run: uv run pytest