regtest

regression test enhancement for the Python unittest framework.


License
Apache-2.0
Install
pip install regtest==0.3

Documentation

Regression test enhancement for the Python unittest framework

GitHubWorkflow Read the Docs GitHub GitHub release PyPI Version PyPI - Python Version PyPI Downloads

Writing tests is important (see here). And when it comes to an existing and running application even more. Existing results must at any chance be reproduced (like-for-like tests).

An easy way to add many test cases is by invoking the application and its subroutines many times. But taking notes (and hardcoding) of all results is annoying.

Here regtest might help.

Simply, write routines that invoke our application. The initial run will collect and store return values in files. The next time (and at any time these routines run) the return values will be checked against the stored ones.

To reset a routine simply remove the corresponding file (named accordingly) of stored reference data. The next time the reference data will be rebuild.