feat(s3): Download remove snapshot and backups. #579
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: Unit Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install uv | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Install system dependencies | |
| run: sudo apt-get install -y redis-tools | |
| - name: Install dependencies | |
| run: pip install -e ".[test,admin]" | |
| - name: Run unit tests with coverage | |
| # e2e (Playwright, browser-driven) runs in its own workflow and needs a | |
| # live bench + browser, so keep it out of the unit run alongside integration. | |
| run: pytest tests/ --ignore=tests/integration --ignore=tests/e2e --cov=pilot --cov-report=term-missing -q |