skippy-io / skippy

Mono-repo for all Skippy projects.
https://www.skippy.io
Apache License 2.0
19 stars 2 forks source link

Junit4 analyze all test by default without skippy runner #189

Open Link184 opened 2 days ago

Link184 commented 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:

tasks.withType<Test> {
    useJUnitPlatform()
    testsToBeIgnored.forEach(::exclude)
}

Is it achievable?

fmck3516 commented 2 days ago

Is it achievable?

Not 100% sure. But: The ask makes sense - I will look into it.