subunit2sql/releasenotes/notes/add_run_wall_time_option-299ddc24b78f9166.yaml
Matthew Treinish 08da4131ed
Add subunit2sql CLI option to use run wall time
This commit adds a new CLI/config option for the subunit2sql cli command
to use the run wall time when populating the run_time column of the runs
table. This is often desirable because it gives you a better feeling
for the duration of the run. However, since using the sum of individual
tests executed during a run has been the default behavior so long we
can't just switch it for backwards compat reasons. This commit thus adds
an option to use the behavior if that's what you need to use.

Change-Id: I08fe16604454f5888d56573e5e919e40ac82efd1
2016-09-14 11:04:11 -04:00

7 lines
273 B
YAML

---
features:
- A new option is added to the subunit2sql CLI command,
--use_run_wall_time/-w, that is used to populate the run_time column with
the wall time of the run instead of the default behavior which uses the
sum of the individual test execution times