Skip to content

Commit

Permalink
Fix pitest task discovery in PitestMergeTask
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun committed Apr 14, 2023
1 parent 8e5af75 commit 4275311
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ class PitestMergeTask extends DefaultTask {

PitestMergeTask() {
project.subprojects.each { subproject ->
subproject.tasks.withType(PitestTask).each { pitestTask ->
inputs.files pitestTask.outputs.files
subproject.afterEvaluate {
subproject.tasks.withType(PitestTask).each { pitestTask ->
this.inputs.files pitestTask.outputs.files
}
}
}
}
Expand Down

1 comment on commit 4275311

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mutation test results

Package Coverage Stats Prev Prev
Overall 81 % 🔻 1265 🔻 / 1559 🔹 81 % 1277 / 1559
com.yubico.fido.metadata 68 % 🔻 217 🔻 / 318 🔹 71 % 227 / 318
com.yubico.internal.util 47 % 🔹 57 🔹 / 120 🔹 47 % 57 / 120
com.yubico.webauthn 87 % 🔹 558 🔹 / 637 🔹 87 % 558 / 637
com.yubico.webauthn.attestation 92 % 🔹 13 🔹 / 14 🔹 92 % 13 / 14
com.yubico.webauthn.data 93 % 🔹 395 🔻 / 423 🔹 93 % 397 / 423
com.yubico.webauthn.extension.appid 100 % 🏆 13 🔹 / 13 🔹 100 % 13 / 13
com.yubico.webauthn.extension.uvm 50 % 🔹 12 🔹 / 24 🔹 50 % 12 / 24
com.yubico.webauthn.meta 0 % 🔹 0 🔹 / 10 🔹 0 % 0 / 10

Previous run: b5b6040 - Diff

Detailed reports: workflow run #210

Please sign in to comment.