-
Notifications
You must be signed in to change notification settings - Fork 624
fix perf apps unit tests #3993
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
fix perf apps unit tests #3993
Conversation
Unit Test Results 391 files ±0 391 suites ±0 17m 17s ⏱️ +11s For more details on these failures, see this check. Results for commit 7e14f47. ± Comparison against base commit ba6f410. ♻️ This comment has been updated with latest results. |
/retest |
Size Report 1Affected ProductsTest Logs
Notes |
Coverage Report 1Affected Products
Test Logs
Notes |
// this is needed for storage test app to build | ||
def hasStorageAppAssembleTask = taskName == ":firebase-storage:test-app:assembleRelease" | ||
return hasProjectTestTask || hasStorageAppAssembleTask || taskName.contains('connectedCheck') || taskName.contains('deviceCheck') || taskName.contains('AndroidTest') | ||
return hasProjectTestTask || taskName.contains('connectedCheck') || taskName.contains('deviceCheck') || taskName.contains('AndroidTest') |
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.
why is no longer needed for storage app?
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.
The storage app is disabled in the repo, and wouldn't work without secrets anyway, so I decided to remove this effectively "dead" code.
No description provided.