test_history.db•16.4 kB
SQLite format 3 @ .�
c 5
�c �}++�1tablemodule_coveragemodule_coverageCREATE TABLE module_coverage (
id INTEGER PRIMARY KEY AUTOINCREMENT,
run_id INTEGER,
module_name TEXT,
statements INTEGER,
missing INTEGER,
coverage_percentage REAL,
FOREIGN KEY (run_id) REFERENCES test_runs (id)
)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�H�_tabletest_runstest_runsCREATE TABLE test_runs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
total_tests INTEGER,
passed_tests INTEGER,
failed_tests INTEGER,
skipped_tests INTEGER,
coverage_percentage REAL,
duration_seconds REAL,
git_hash TEXT,
branch TEXT
)