I am generating a text report for my test (TestStand 2016 SP1), and have set my result text using the ModifyReportEntry callback. However, I still get the "Begin Sequence" and "End Sequence" header/footer around all my sequence calls. I only want my report to show the individual step results, as discussed in the post below:
The solution above was to modify the ReportGen_txt.seq and in AddSequenceResultToReport_Impl, I marked the following steps as "Skip"
- Add Sequence Name
- Add Sequence File Path
- Add Sequence End Marker
While this works, I'd prefer a more self-contained solution that I can implement within my client sequence file, without needing to modify any files that came with TestStand. I don't want to impact the report generation for other tests that might run on this system, and I also don't want to risk any future updates to TestStand overridding my changes to ReportGen_txt.seq.
Is there a way to do this just using sequence callbacks in my client sequence file? A callback that allows me to set ReportSection.Header and ReportSection.Footer to an empty string would work, but I don't see anything like that.