Skip to content

Incorrect Latency

Incorrect Latency #47

name: Integration Tests
on:
pull_request:
branches: ["master"]
env:
POETRY_VIRTUALENVS_CREATE: "false"
PYTHON_VERSION: "3.9"
POETRY_VERSION: "2.2.1"
PIPX_DEFAULT_PYTHON: "python3.9"
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
run: pipx install poetry==${{ env.POETRY_VERSION }}
- name: Install dependencies
run: poetry install
- name: Run integration tests
run: poetry run pytest