Skip to content

[Feature] Launcher: Make port base configurable #1

[Feature] Launcher: Make port base configurable

[Feature] Launcher: Make port base configurable #1

Workflow file for this run

name: Router API Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
cpu-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Run CPU unit tests
run: pytest tests/unit -v