Excluding files from analysis based on path-matching patterns
This feature is only available in the Enterprise plan.
As an organization admin, you can define, at the organization level, the exclusion of files from the project's analysis baseline based on file paths. It means that this analysis scope adjustment applies to all projects in the organization. However, they can be overridden at the project level in the UI or through analysis parameters set on the CI/CD host.
To exclude the files, you define file exclusion parameters based on directory and file name patterns.
The exclusion of files based on path-matching patterns is necessary if, for example, source and test code are stored in common directories.
Principles governing the use of file exclusion parameters
A file exclusion parameter:
- Applies either to source code (non-test code) or to test code files.
The SonarScanner must identify the non-test code as well as the test code since they are processed differently by SonarCloud. A code file is either a non-test or a test code; it cannot be both (If this is the case, the scanner will fail the analysis with an error message.). - Contains:
- Either exclusion patterns: to define files to be excluded from the analysis scope.
- Or inclusion patterns: to define files to be included in the scope.
It means that the rest of the files is excluded from the analysis scope.
For a given code category (source or test), we strongly recommend that you use either exclusion-pattern or inclusion-pattern parameters, depending on what is simpler in your situation (If you do not and there is an overlapping, then exclusion patterns have precedence over inclusion patterns.).
The following applies:
- The parameter defined at the project level will override the same parameter defined at the organization level.
For example, if you define at the organization level the exclusion pattern for source codesrc/**/test1/**/*
, then, if the project administrator sets the exclusion pattern for source codesrc/**/test2/**/*
for their project, the scanner will consider only the patternsrc/**/test2/**/*
to compute source file exclusion. - If test inclusion patterns are used, the scanner will automatically set these patterns as source file exclusion patterns during project analysis. These source file exclusion patterns will apply in addition to the other configured source file exclusion patterns.
For example, if:- the exclusion pattern for source code is
src/**/test5/**/*
- and the inclusion pattern for test code is
src/**/test6/**/*
- then the scanner will consider both patterns to compute the source file exclusion:
src/**/test5/**/*
andsrc/**/test6/**/*
.
- the exclusion pattern for source code is
A file path definition is either relative to the sonar.projectBaseDir
property (which is by default the directory from which the analysis was started, for more information see Analysis parameters) or absolute.
Defining a file exclusion parameter
- Retrieve the organization.
- Go to Administration > Analysis scope.
- In Files, choose the parameter to configure (source or test code; exclusion or inclusion patterns), and enter and save the first pattern. See Wildcards….
- Add additional patterns to the parameter if necessary.
- Define other parameters if necessary. Make sure you use either Source File Exclusions or Source File Inclusions, and either Test File Exclusions or Test File Inclusions.
Was this page helpful?