Starting with 7.6.1 some internal changes to how the REST tests are managed accidentally causes all of the REST tests (not just the plugin tests) to execute. This applies to any plugin that uses the REST test framework from build-tools. The plugin REST tests are still run.
The workaround is to add the following to build.gradle after applying the plugins:
restResources {
restApi {
includeCore '*'
}
}