-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
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
Switch gradle to info logging for improved test debugging #1646
Conversation
Signed-off-by: Peter Nied <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #1646 +/- ##
============================================
- Coverage 64.61% 64.57% -0.05%
+ Complexity 3217 3214 -3
============================================
Files 247 247
Lines 17352 17352
Branches 3082 3082
============================================
- Hits 11212 11205 -7
- Misses 4594 4597 +3
- Partials 1546 1550 +4
Continue to review full report at Codecov.
|
@@ -50,7 +50,7 @@ jobs: | |||
uses: github/codeql-action/analyze@v1 | |||
|
|||
- name: Test | |||
run: OPENDISTRO_SECURITY_TEST_OPENSSL_OPT=true ./gradlew test | |||
run: OPENDISTRO_SECURITY_TEST_OPENSSL_OPT=true ./gradlew test -i |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this print info level logs on all tests or only failing tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This prints logs for everything, which is the behavior when we were using maven
First CI failure was because of the the artifact step, removed in #1645
|
…-project#1646) Signed-off-by: Peter Nied <[email protected]>
Description
Switch gradle to info logging for improved test debugging
Issues Resolved
Testing
Check List
New functionality includes testingNew functionality has been documentedBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.