SQL Repository Type¶
Persistent storage of test results.
-
class
stestr.repository.sql.
Repository
(url)[source]¶ subunit2sql based storage of test results.
This repository stores each stream in a subunit2sql DB. Refer to the subunit2sql documentation for
-
count
()[source]¶ Return the number of test runs this repository has stored.
- Return count
The count of test runs stored in the repository.
-
find_metadata
(metadata)[source]¶ Return the list of run_ids for a given metadata string.
- Param
metadata: the metadata string to search for.
- Returns
a list of any test_ids that have that metadata value.
-
get_failing
()[source]¶ Get a TestRun that contains all of and only current failing tests.
- Returns
a TestRun.
-