如何在Spring Boot测试中排除集成测试,基于外部属性进行gradle?
尝试使用@ActiveProfiles。但它不起作用
答案 0 :(得分:0)
这是我找到的解决方案。
您可以根据外部系统属性将其排除。
-Dtest.profile=integration
和build.gradle
test {
if (System.properties['test.profile'] != 'integration') {
exclude '**/*integrationTests*'
}
}