Java,SpringBoot上的集成测试,gradle从构建中排除

时间:2017-11-03 13:51:33

标签: java gradle spring-boot-test

如何在Spring Boot测试中排除集成测试,基于外部属性进行gradle?

尝试使用@ActiveProfiles。但它不起作用

1 个答案:

答案 0 :(得分:0)

这是我找到的解决方案。

您可以根据外部系统属性将其排除。

-Dtest.profile=integration

和build.gradle

test {
    if (System.properties['test.profile'] != 'integration') {
    exclude '**/*integrationTests*'
   }
}