- Restructure .env.example with security-focused documentation, service-specific environment file references, and AWS Secrets Manager integration - Update CLI tests workflow to single Python 3.13 version, add pytest-mock dependency, and consolidate test execution with coverage - Add comprehensive security validation to package publishing workflow with manual approval gates, secret scanning, and release
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
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
|