Open Link184 opened 2 days ago
It is a bit annoying to add rules to all the tests we want to cover with skippy, it can be especially painful on big projects that contains thousands of test classes.
We can customize gradle test tasks to ignore tests by overriding gradle Test task:
Test
tasks.withType<Test> { useJUnitPlatform() testsToBeIgnored.forEach(::exclude) }
Is it achievable?
Not 100% sure. But: The ask makes sense - I will look into it.
It is a bit annoying to add rules to all the tests we want to cover with skippy, it can be especially painful on big projects that contains thousands of test classes.
We can customize gradle test tasks to ignore tests by overriding gradle
Test
task:Is it achievable?