Skip to content

Commit

Permalink
Fix: Disable ignoreFailures on all projects, but the ones managed b…
Browse files Browse the repository at this point in the history
…y Native or BuildTools

Reversed the condition by mistake
  • Loading branch information
CristianGM authored and Space Team committed Nov 7, 2024
1 parent 5f709fe commit 3773ffe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ fun Project.configureTests() {
":libraries:tools:gradle",
":gradle",
)
if (projectsUsingTcMutes.none { project.path.startsWith(it) }) {
if (projectsUsingTcMutes.any { project.path.startsWith(it) }) {
val ignoreTestFailures: Boolean by rootProject.extra
tasks.configureEach {
if (this is VerificationTask) {
Expand Down

0 comments on commit 3773ffe

Please sign in to comment.