Release 3.2.0 This is a minor version release that adds a couple new features and fixes bugs. New Features ------------ * Support for configuring stestr via a tox.ini file has been added. It's now no longer needed to create a separate .stestr.conf file and instead it can be embedded in an existing tox.ini file. * A new stestr command, `stestr history list` has been added to list the previous runs in the stestr repository. * A new stestr command, `stestr history show` has been added to show the output from a previous run from the stestr repository. * A new stestr command, `stestr history remove`, has been added to remove runs from the stestr repository. Deprecations ------------ * The 'sql' repository type has been deprecated and will be removed in the 4.0.0 release. This was never the default repository type and for its entire existence it was listed as an experimental feature. If you were relying on this repository type you should transition to using a file repository type and manually leverage subunit2sql to store data in a SQL database. * The `--repo-type`/`-r` common argument for switching the repository type has been deprecated and will be removed in the 4.0.0 release. Fixes ----- * Runs that have a worker crash outside of Python (typically with an error like a segfault) are now properly highlighted in the default subunit-trace output. Previously they would just silently be listed as 'inprogress' and not show as failed anywhere.