Tooling for converting coverage data into a SQL DB
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Martin Kopec d6ef9a22cd Switch testing to Antelope testing runtime
Updating the testing template to Antelope testing runtime:
https://governance.openstack.org/tc/reference/runtimes/2023.1.html

Change-Id: I2e0b6d679d1262bd63b0f9375ec28eb2affa135d
5 months ago
coverage2sql Remove Six 2 years ago
doc Update IRC network to OFTC 2 years ago
etc Remove unused config entries from sample config 4 years ago
releasenotes Merge "Update python testing as per zed cycle teting runtime" 12 months ago
tools [goal] Migrate testing to ubuntu focal 3 years ago
.coveragerc Omit unit test files from coverage 7 years ago
.gitignore Ignore *.db file from git repo 4 years ago
.gitreview OpenDev Migration Patch 4 years ago
.mailmap Initial Cookiecutter Commit. 7 years ago
.stestr.conf Switch to use stestr instead of os-testr 6 years ago
.zuul.yaml Switch testing to Antelope testing runtime 5 months ago
CONTRIBUTING.rst [ussuri][goal] Update contributor documentation 3 years ago
HACKING.rst Update url in HACKING.rst 5 years ago
LICENSE Initial Cookiecutter Commit. 7 years ago
MANIFEST.in Add unit tests and remove oslo_db 7 years ago
README.rst Use opendev repository 4 years ago
babel.cfg Initial Cookiecutter Commit. 7 years ago
bindep.txt Fix gate error "mysqladmin: command not found" 4 years ago
requirements.txt Update requirements 6 years ago
setup.cfg Switch testing to Antelope testing runtime 5 months ago
setup.py Cleanup py27 support 3 years ago
test-requirements.txt Remove Six 2 years ago
tox.ini Switch testing to Antelope testing runtime 5 months ago

README.rst

Team and repository tags

image

coverage2sql README

Command to Read a coverage file and put the data in a SQL database

coverage2sql is a tool for storing data of test coverage into a SQL database. With using this tool, you can store time series coverage data and analyze it if your coverage rate is down.

Usage

DB Setup

The usage of coverage2sql is split into 2 stages. First you need to prepare a database with the proper schema; coverage2sql-db-manage should be used to do this. The utility requires db connection info which can be specified with a config file. Obviously the sql connector type, user, password, address, and database name should be specific to your environment. coverage2sql-db-manage will use alembic to setup the db schema. You can run the db migrations with a config file:

coverage2sql-db-manage --config-file etc/coverage2sql.conf upgrade head

This will bring the DB schema up to the latest version for coverage2sql.

coverage2sql

Once you have a database setup with the proper database schema you can then use the coverage2sql command to populate the database with data from your test coverage file. coverage2sql takes in a .coverage file through by passing it file paths as positional arguments to the script at this moment.

For example:

coverage2sql --config-file etc/coverage2sql.conf coverage2sql .coverage

There are several options for running coverage2sql, they can be listed with:

coverage2sql --help

The only required option is --database-connection. The options can either be used on the CLI, or put in a config file. If a config file is used you need to specify the location on the CLI.

TODO

To see the TODO, go to the launchpad site:

ChangeLog

To see the release notes go here: https://docs.openstack.org/releasenotes/coverage2sql/