문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
gradle:java [2022/06/30 16:21] kwon37xi [테스트 실행] |
gradle:java [2022/06/30 16:36] (현재) kwon37xi [Test 완료후에 실패건이 있는지 마킹만 하기] |
||
---|---|---|---|
줄 610: | 줄 610: | ||
reportOn subprojects*.test | reportOn subprojects*.test | ||
} | } | ||
+ | </ | ||
+ | |||
+ | ==== Test 완료후에 실패건이 있는지 마킹만 하기 ==== | ||
+ | * '' | ||
+ | * [[git: | ||
+ | <code groovy> | ||
+ | test { | ||
+ | ignoreFailures = true | ||
+ | afterSuite { TestDescriptor desc, TestResult result -> | ||
+ | if (result.failedTestCount > 0) { | ||
+ | rootProject.buildDir.mkdir() | ||
+ | File testFailed = rootProject.file(" | ||
+ | if (!testFailed.exists()) { | ||
+ | testFailed.createNewFile() | ||
+ | testFailed.text = "이 파일이 존재하면 테스트중 실패한 건이 존재한다는 의미입니다." | ||
+ | } | ||
+ | logger.warn(" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | * 다른 stage 에서 ''< | ||
+ | |||
+ | <code sh> | ||
+ | if [ -f " | ||
+ | echo "file exists" | ||
+ | exit 1 | ||
+ | fi | ||
</ | </ | ||
===== Jar ===== | ===== Jar ===== |