Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled
Pause/Resume timer:
- Add paused_at, red_paused_seconds, blue_paused_seconds fields to Test model
- Add pause_timer/resume_timer workflow functions with accumulated pause tracking
- Auto-resume on phase submit; subtract paused time from worklog duration
- Add POST /tests/{id}/pause-timer and resume-timer endpoints
- Update LiveTimer component with pause/resume button and paused visual state
- Wire pause/resume mutations through TestDetailPage and TestDetailHeader
Professional Reporting Engine - Fase 2:
- Add ReportEngine service with Jinja2 HTML rendering, WeasyPrint PDF, and docxtpl DOCX
- Add corporate CSS stylesheet with cover page, data tables, stats grid, findings
- Create purple_campaign, coverage_report, and executive_summary HTML templates
- Add report_generation_service collecting domain data for each report type
- Add professional_reports router: GET /reports/generate/purple-campaign/{id}, coverage-summary, executive-summary
- Add analytics router with flat JSON endpoints for PowerBI: /coverage, /tests, /trends, /operators
- Add advanced_metrics router: /coverage-by-tactic, /never-tested, /avg-validation-time, /detection-rate-trend
- Add weasyprint and docxtpl to requirements.txt
- Add REPORT_TEMPLATES_DIR, REPORT_OUTPUT_DIR, COMPANY_NAME, COMPANY_LOGO_PATH to config
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""add_phase_timing_fields
|
|
|
|
Revision ID: b021phasetiming
|
|
Revises: b020jiraworklogs
|
|
Create Date: 2026-02-17 18:00:00.000000
|
|
|
|
Add red_started_at and blue_started_at columns to the tests table
|
|
so that automatic worklogs can record real elapsed time per phase.
|
|
"""
|
|
|
|
from alembic import op
|
|
|
|
revision = "b021phasetiming"
|
|
down_revision = "b020jiraworklogs"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.execute("""
|
|
ALTER TABLE tests
|
|
ADD COLUMN IF NOT EXISTS red_started_at TIMESTAMP,
|
|
ADD COLUMN IF NOT EXISTS blue_started_at TIMESTAMP,
|
|
ADD COLUMN IF NOT EXISTS paused_at TIMESTAMP,
|
|
ADD COLUMN IF NOT EXISTS red_paused_seconds INTEGER DEFAULT 0,
|
|
ADD COLUMN IF NOT EXISTS blue_paused_seconds INTEGER DEFAULT 0;
|
|
""")
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.execute("""
|
|
ALTER TABLE tests
|
|
DROP COLUMN IF EXISTS red_started_at,
|
|
DROP COLUMN IF EXISTS blue_started_at,
|
|
DROP COLUMN IF EXISTS paused_at,
|
|
DROP COLUMN IF EXISTS red_paused_seconds,
|
|
DROP COLUMN IF EXISTS blue_paused_seconds;
|
|
""")
|