Skip to content

tests: add interop tests for minimal client #3

tests: add interop tests for minimal client

tests: add interop tests for minimal client #3

Workflow file for this run

name: Interop Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
interop:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Run interop tests
run: |
uv run pytest tests/interop/ \
-v \
--timeout=300 \
-x \
--tb=short \
--log-cli-level=INFO
env:
LEAN_ENV: test