File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ Initial implementation for the test-level policies has been added as
2323well, aiming at CI workflows that need to enforce AVC checks across the
2424whole component portfolio.
2525
26+ The ``results.yaml `` file will now contain the log path for
27+ ``journal.xml ``.
28+
2629
2730tmt-1.49.0
2831~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ rlJournalStart
6868 0 " Check output.txt log exists in $results "
6969 rlRun " yq -ery '.[] | select(.name == \" /test/beakerlib/good\" ) | .log | map({path: .}) | .[] | select(.path | test(\" ^data/.+/journal.txt$\" ))' $results " \
7070 0 " Check journal.txt log exists in $results "
71+ rlRun " yq -ery '.[] | select(.name == \" /test/beakerlib/good\" ) | .log | map({path: .}) | .[] | select(.path | test(\" ^data/.+/journal.xml$\" ))' $results " \
72+ 0 " Check journal.xml log exists in $results "
7173 rlPhaseEnd
7274
7375 rlPhaseStartCleanup
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def extract_results(
134134 note : list [str ] = []
135135 log : list [Path ] = [
136136 invocation .relative_path / filename
137- for filename in [tmt .steps .execute .TEST_OUTPUT_FILENAME , 'journal.txt' ]
137+ for filename in [tmt .steps .execute .TEST_OUTPUT_FILENAME , 'journal.txt' , 'journal.xml' ]
138138 if (invocation .path / filename ).is_file ()
139139 ]
140140
You can’t perform that action at this time.
0 commit comments