Tool to create a traceability matrix
Project description
tracematrix
A Python tool to create a traceability matrix.
Scope
This package focuses on generating the traceability matrix itself. As the APIs and export formats of different test management and/or requirement management tools can be very different, the data acquisition and conversion is not in the scope of this package. However, it aims to provide a convenient way to create the individual items (e.g. requirements, testcases or any other traceable item) and traces between them.
How to use this package
Currently it is only possible to use this package programmatically in your own script.
All traceable items have a unique id
and a set of other items that they are traced to.
To get an existing or create a new item, you can use the class method get_by_id(id_)
.
It will only create a new instance if no existing item with this id
could be found.
This means that you don't have to keep track if you already processed this item, because
some items could appear more than once in your data (i.e. a requirement could appear on multiple test cases).
from tracematrix.item import TraceItem
req1 = TraceItem.get_by_id("REQ_1")
testcase1 = TraceItem.get_by_id("TC_1")
Creating links between to items is done by simply passing the two items to TraceItem.add_trace(first, second)
.
This will create a bidirectional link between these elements and update the traced_to
attribute on both.
TraceItem.add_trace(req1, testcase1)
Currently two output formats are supported - CSV and HTML.
Default is CSV, but you can specify the reporter when creating the TraceabilityMatrix
:
from tracematrix.reporters import HtmlReporter
matrix = TraceabilityMatrix(testcases, requirements, reporter=HtmlReporter)
matrix.create_matrix("RequirementsTraceabilityMatrix.html")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tracematrix-0.3.1.tar.gz
.
File metadata
- Download URL: tracematrix-0.3.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.9.6 Linux/5.8.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40cf9b27161fc8bafdbf9a4f6f07c2598dfdfaf4727ac4d442527c90caf47897 |
|
MD5 | 3a7d710d64fabaa8c00e1cf92216c240 |
|
BLAKE2b-256 | d208cc0cf8fe6101d2e69bff2a6f9e6659bc6120d042677d599142fe653ab1a5 |
File details
Details for the file tracematrix-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: tracematrix-0.3.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.9.6 Linux/5.8.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69c5cb3b790f505e24774d3c8e9617c8093f8c85272046d45947856ab0b5edbd |
|
MD5 | acc4beea567c1444b56ae4974c22ffb8 |
|
BLAKE2b-256 | 9e350cb42e7e98912ce1ea995235961b3b0617deb25169eaedad43758737e2a6 |