-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from emmcauley/em_feat_54_nf_test_output
feat: add nf_test_output to ignoreParams
- Loading branch information
Showing
5 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ import groovy.transform.PackageScope | |
/** | ||
* This class allows model an specific configuration, extracting values from a map and converting | ||
* | ||
* We anotate this class as @PackageScope to restrict the access of their methods only to class in the | ||
* We annotate this class as @PackageScope to restrict the access of their methods only to class in the | ||
* same package | ||
* | ||
* @author : nvnieuwk <[email protected]> | ||
|
@@ -49,5 +49,7 @@ class ValidationConfig { | |
throw new SchemaValidationException("Config value 'validation.defaultIgnoreParams' should be a list of String values") | ||
} | ||
ignoreParams += config.defaultIgnoreParams ?: [] | ||
ignoreParams += 'nf_test_output' //ignore `nf_test_output` directory when using nf-test | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters