Trap bandits experiment #64
Workflow file for this run
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: Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| smoke-tests: | |
| name: Smoke Tests (Round 1) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v2 | |
| - run: uv sync --extra test | |
| - run: uv run pytest tests/test_smoke.py -v | |
| unit-tests: | |
| name: Unit Tests (Round 2) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v2 | |
| - run: uv sync --extra test | |
| - run: uv run pytest tests/ -v --cov=ibrl --cov-report=term-missing --cov-fail-under=75 |