[IMP] tests: enable additional resource file-related checkers #14716
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The following custom checkers were never run by the
ci/documentation_guidelines
build and had to be run locally withmake review
:check_image_size
: Check that images are not larger than the maximum file size allowed for their extension.check_image_color_depth
: Check that PNG images are compressed to 8-bit color depth with PNGQuant.check_resource_file_name
: Check that resource file names use hyphens rather than underscores.Since reviewers systematically perform these checks manually, it makes sense to include them in the standard test suite. Should a check raise a false positive (e.g., an
example_db.zip
resource file is added and hyphens should not be used), the red CI can be safely ignored as it is not required for merging.Forward-Port-Of: #14650