Maven fail-safe not executing tests

前端 未结 10 1580
孤城傲影
孤城傲影 2020-12-28 12:23

I\'ve combed StackOverflow and many other sites, have found many other related posts and have followed all said suggestions, but in the end, failsafe is skipping my

10条回答
  •  囚心锁ツ
    2020-12-28 13:05

    I had somewhat similar issue. My Integration tests were not being picked up. My project is a multi module spring boot project. And my mistake was that I added maven-failsafe-plugin in the parent POM. After fiddling around with many options I placed the failsafe-plugin in the module pom where all my integration tests were present which solved my problem.

提交回复
热议问题