Skip to content

Smoke Tests

Smoke Tests #34

Workflow file for this run

name: Smoke Tests
on:
pull_request:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
jobs:
smoke:
name: Testnet Smoke Tests
runs-on: ubuntu-latest
timeout-minutes: 5
continue-on-error: true
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Install Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev --python ${{ matrix.python-version }}
- name: Run smoke tests
run: uv run pytest tests/unit/smoke -v -m testnet