Skip to content

fix(admin-frontend): shorten S3 connect explainer copy #581

fix(admin-frontend): shorten S3 connect explainer copy

fix(admin-frontend): shorten S3 connect explainer copy #581

Workflow file for this run

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