-
Notifications
You must be signed in to change notification settings - Fork 119
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
feat: iOS add directories-to-pull #1266
Conversation
"/sdcard or /data/local/tmp (for example, --directories-to-pull /sdcard/tempDir1,/data/local/tmp/tempDir2). " + | ||
"Path names are restricted to the characters a-zA-Z0-9_-./+. The paths /sdcard and /data will be made available " + | ||
"and treated as implicit path substitutions. E.g. if /sdcard on a particular device does not map to external " + | ||
"storage, the system will replace it with the external storage path prefix for that device."] |
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 description for Android, not for common. Try to make it more generic
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.
is this a copy pasted description? if it is it should most likely be left as is.
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 a description from android. I moved this property from android to common so now this description should have information for android and ios.
please update |
9ed1f1c
to
a3e0976
Compare
Codecov Report
@@ Coverage Diff @@
## master #1266 +/- ##
============================================
+ Coverage 79.65% 79.67% +0.01%
Complexity 724 724
============================================
Files 235 235
Lines 4498 4501 +3
Branches 773 773
============================================
+ Hits 3583 3586 +3
Misses 515 515
Partials 400 400 |
Do we have any working example to verify if this feature is working? |
@@ -62,6 +63,7 @@ object GcIosTestMatrix { | |||
|
|||
val iOSTestSetup = IosTestSetup() | |||
.setNetworkProfile(args.networkProfile) | |||
.setPullDirectories(args.directoriesToPull.toIosDeviceFiles()) |
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.
Interesting, for android we pass a list of strings... and the field itself is named differently directoriesToPull
😸
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.
google API is full of surprises
I can see it's a rather simple change but I will feel more comfortable if I could test it. |
a3e0976
to
8dbfcd2
Compare
Thanks, changed |
@Mergifyio rebase |
Command
|
9c75613
to
cb2df6f
Compare
e0abffa
to
ee8cc72
Compare
Timestamp: 2020-11-02 13:11:22 |
3b05bfa
to
c4cdaa2
Compare
Fixes #1198
Test Plan
Can set
directories-to-pull
in iOSChecklist