nightly live tests #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: nightly live tests | |
| on: | |
| schedule: | |
| - cron: '17 1 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| live: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Run live tests against real exchanges | |
| run: uv run pytest -m live -o addopts="" tests/ |