Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/tutorial_tips_tricks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ ReFrame will process them as usual, but instead of running the selected tests, i
for running each test individually as a Gitlab job. We then pass the generated CI pipeline file to second phase as
an artifact and we are done! If ``image`` keyword is defined in ``.gitlab-ci.yml``, the emitted pipeline will use
the same image as the one defined in the parent pipeline.
Besides, each job in the generated pipeline will output a separate junit report which can be used to create GitLab badges.

The following figure shows one part of the automatically generated pipeline for the test graph depicted `above <#fig-deps-complex>`__.

Expand Down
1 change: 1 addition & 0 deletions reframe/frontend/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def rfm_command(testcase):
f'-R' if recurse else '',
f'--report-file={report_file}',
f'--restore-session={restore_files}' if restore_files else '',
f'--report-junit={testcase.check.name}-report.xml',
f'{"".join("-" + verbosity)}' if verbosity else '',
'-n', f"'^{testcase.check.name}$'", '-r'
])
Expand Down