-
-
Notifications
You must be signed in to change notification settings - Fork 124
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(android_parsing): remote parse without overridden testrun listene… #876
fix(android_parsing): remote parse without overridden testrun listene… #876
Conversation
…r if a user forgot to add the correspondent dependency in the project
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## feature/raw_json_meta_2 #876 +/- ##
==========================================================
Coverage 59.30% 59.30%
Complexity 798 798
==========================================================
Files 214 214
Lines 4443 4443
Branches 709 709
==========================================================
Hits 2635 2635
Misses 1476 1476
Partials 332 332 ☔ View full report in Codecov by Sentry. |
@@ -68,7 +78,10 @@ class AmInstrumentTestParser( | |||
|
|||
val testParserConfiguration = vendorConfiguration.testParserConfiguration | |||
val overrides: Map<String, String> = when { | |||
testParserConfiguration is TestParserConfiguration.RemoteTestParserConfiguration -> testParserConfiguration.instrumentationArgs | |||
testParserConfiguration is TestParserConfiguration.RemoteTestParserConfiguration -> { | |||
if (blockListenerArgumentOverride) testParserConfiguration.instrumentationArgs.filterKeys { it != LISTENER_ARGUMENT } |
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 is going to filter all listener arguments, not just the one for parsing. It's possible to use lots of listeners at the same and just one of them would be the test parser annotation producer
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.
added a check for the value (annotation producer)
closed prior to #877 |
…r if a user forgot to add the correspondent dependency in the project