name: CLI Tests on: push: branches: [main] paths: - 'cli/**' - 'tests/cli/**' pull_request: branches: [main] paths: - 'cli/**' - 'tests/cli/**' jobs: cli-tests: runs-on: ubuntu-latest name: CLI Tests steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: '3.13' - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e . pip install -e packages/py/aitbc-crypto pip install fastapi uvicorn sqlmodel pydantic-settings aiosqlite slowapi orjson prometheus-client pip install pytest pytest-cov pytest-asyncio pytest-mock - name: Run CLI tests run: | python -m pytest tests/cli/ -v --tb=short --disable-warnings --cov=aitbc_cli --cov-report=term-missing --cov-report=xml env: DATABASE_URL: sqlite:///./test_coordinator.db - name: Upload coverage uses: actions/upload-artifact@v4 with: name: cli-coverage-report path: coverage.xml