Skip to content

Commit

Permalink
minor: moves pitest suppressions under config
Browse files Browse the repository at this point in the history
  • Loading branch information
rnveach authored and nrmancuso committed Nov 27, 2022
1 parent 495594e commit 72fa053
Show file tree
Hide file tree
Showing 30 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/pitest-survival-check-xml.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private static Set<String> getPitestProfiles() {
private static int checkPitestReport(String profile, String flag) {
final XmlParser xmlParser = new XmlParser()
File mutationReportFile = null
final String suppressedMutationFileUri = ".${File.separator}.ci${File.separator}" +
final String suppressedMutationFileUri = ".${File.separator}config${File.separator}" +
"pitest-suppressions${File.separator}${profile}-suppressions.xml"

final File pitReports =
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle_non_main_files_suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<suppress id="lineLength" files=".ci[\\/]openjdk17-excluded.files"/>

<!-- this file cannot be line wrapped, It contains a list of suppressions -->
<suppress id="lineLength" files=".ci[\\/]pitest-suppressions[\\/].*"/>
<suppress id="lineLength" files="config[\\/]pitest-suppressions[\\/].*"/>

<!-- this file cannot be line wrapped, It contains a list of suppressions -->
<suppress id="lineLength" files="config[\\/]error-prone-suppressions[\\/].*"/>
Expand Down

0 comments on commit 72fa053

Please sign in to comment.