Memory Repository Type¶
In memory storage of test results.
- class stestr.repository.memory.Repository[source]¶
In memory storage of test results.
- count()[source]¶
Return the number of test runs this repository has stored.
- Return count:
The count of test runs stored in the repository.
- get_failing()[source]¶
Get a TestRun that contains all of and only current failing tests.
- Returns:
a TestRun.
- class stestr.repository.memory.RepositoryFactory[source]¶
A factory that can initialise and open memory repositories.
This is used for testing where a repository may be created and later opened, but tests should not see each others repositories.