We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재는 테스트가 실패해도 모든 테스트가 전부 실행돼요.
하나의 테스트만 실패해도 gradle test 작업을 중단하도록 변경해요.
이렇게하면 실패 시 CI 작업 속도를 높일 수 있어요.
다음의 gradle 설정 추가
test { failFast = true }
Gradle Goodness: Stop Build After One Failing Test
The text was updated successfully, but these errors were encountered:
zeus6768
No branches or pull requests
AS-IS
현재는 테스트가 실패해도 모든 테스트가 전부 실행돼요.
TO-BE
하나의 테스트만 실패해도 gradle test 작업을 중단하도록 변경해요.
이렇게하면 실패 시 CI 작업 속도를 높일 수 있어요.
다음의 gradle 설정 추가
관련 자료
Gradle Goodness: Stop Build After One Failing Test
The text was updated successfully, but these errors were encountered: