If a lot of files get changed during an execution it can be difficult to navigate or get a high-level summary.
To control which files must be rendered as results, you can create a special file in your project folder called .dominoresults
.
If this file exists and has entries, Domino will only render results that match patterns in the file.
To include only specific files of interest, your .dominoresults
file must list the relative path to those, each on a new line.
The following example lists only histogram.pdf
and output.txt
in the top-level directory of the project.
histogram.pdf
output.txt
Domino can use wildcards patterns in .dominoresults
.
This way you can specify groups of files to show.
The following example limits the files to PDF documents in the top-level directory, all PNG files in a directory images and text files arbitrarily deep in sub-directories of the project.
*.pdf
results/*.png
**/*.txt