본문 바로가기

개발 Error

./gradlew build 명령을 실행할 때, 테스트 실패

$ ./gradlew build

> Task :test FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':test'. > There were failing tests. See the report at: file:///C:/Users/LG/Documents/MJU/%EA%B3%B5%EB%AA%A8%EC%A0%84/Github/JejuTravel-BE/build/reports/tests/test/index.html * Try: > Run with --scan to get full insights. BUILD FAILED in 20s 7 actionable tasks: 7 executed

 


./gradlew build 명령을 실행할 때 테스트가 실패하면 빌드가 중단될 수 있습니다. 테스트 오류를 무시하고 빌드를 진행하려면 몇 가지 옵션이 있습니다.

 

1. 테스트 무시하고 빌드: Gradle 명령어에 -x test 옵션을 추가하여 테스트를 무시하고 빌드를 진행할 수 있습니다.

./gradlew build -x test

 

2. 테스트 오류 확인: 테스트 오류가 있는 경우, build/reports/tests/test/index.html 파일을 열어 테스트 실패에 대한 자세한 정보를 확인할 수 있습니다. 이를 통해 테스트 오류를 수정할 수 있습니다.

 

3. 테스트 로그 확인: 터미널에서 테스트 로그를 자세히 확인하려면 --info 또는 --debug 옵션을 추가하여 실행할 수 있습니다.

./gradlew build --info

 

테스트 오류를 무시하고 빌드를 진행한 후, JSON 파싱과 관련된 문제가 해결되었는지 확인하세요. 테스트 오류를 수정해야 하는 경우, index.html 파일을 열어 자세한 오류 메시지를 확인한 후 수정합니다.