Skip to content

Commit

Permalink
MBS-8045 Fix Ignore annotation excludes tests by default (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
sboishtyan authored Apr 10, 2020
1 parent 6ef9f3d commit 1164bdc
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,11 @@ private class FilterFactoryImpl(
)
)
}
if (filterData.fromSource.annotations.excluded.isNotEmpty()) {
add(
ExcludeAnnotationsFilter(
filterData.fromSource.annotations.excluded + "org.junit.Ignore"
)
add(
ExcludeAnnotationsFilter(
filterData.fromSource.annotations.excluded + "org.junit.Ignore"
)
}
)
}

private fun MutableList<TestsFilter>.addSourceCodeSignaturesFilters() {
Expand Down

0 comments on commit 1164bdc

Please sign in to comment.