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
This works for unit tests, but has no effect on instrumentation tests:
testOptions.unitTests.all { testLogging { events 'passed', 'skipped', 'failed', 'standardOut', 'standardError' outputs.upToDateWhen { false } showStandardStreams = true exceptionFormat "full" } }
This should do the job:
tasks.withType(com.android.build.gradle.internal.tasks.AndroidTestTask) { task -> task.doFirst { logging.level = LogLevel.INFO } task.doLast { logging.level = LogLevel.LIFECYCLE } }
Except it doesn't. It seems to have zero effect on instrumentation tests, still only failures are logged.
When run with the --info switch, the passed tests are there, so the above should be working, too. What's wrong here? Anyone knows how to solve this?
The text was updated successfully, but these errors were encountered:
@zsoltk The first one is for unit tests and works fine. The second does not work at all.
Sorry, something went wrong.
No branches or pull requests
This works for unit tests, but has no effect on instrumentation tests:
This should do the job:
Except it doesn't. It seems to have zero effect on instrumentation tests, still only failures are logged.
When run with the --info switch, the passed tests are there, so the above should be working, too. What's wrong here? Anyone knows how to solve this?
The text was updated successfully, but these errors were encountered: