This message was deleted.
# community-support
s
This message was deleted.
a
if you have a JVM project then I think the only standard option for coverage is JaCoCo’s requirements https://docs.gradle.org/current/userguide/jacoco_plugin.html#sec:jacoco_report_violation_rules If you wanted to make a custom plugin then there’s the possibility of listening to build events, and I think you should be able to get access to the test completion results. I think this API is intended to be used by IDEs, so they can show passed/failed tests, but it should be suitable for writing a simple plugin too.
r
Cool, thanks, I'll look into test completion results
👍 1