-
Notifications
You must be signed in to change notification settings - Fork 118
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
Add keep file path for ios #712
Conversation
Codecov Report
@@ Coverage Diff @@
## master #712 +/- ##
============================================
+ Coverage 78.52% 78.77% +0.24%
- Complexity 664 665 +1
============================================
Files 113 113
Lines 2673 2676 +3
Branches 381 380 -1
============================================
+ Hits 2099 2108 +9
+ Misses 324 322 -2
+ Partials 250 246 -4 |
@@ -168,6 +168,10 @@ flank: | |||
## Local folder to store the test result. Folder is DELETED before each run to ensure only artifacts from the new run are saved. | |||
# local-result-dir: flank | |||
|
|||
## Keeps the full path of downloaded files. Required when file names are not unique. | |||
## Default: false | |||
# keep-file-path: false |
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.
Make sure to update flank.ios.yml
https://github.com/Flank/flank/blob/master/test_runner/flank.ios.yml
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.
Thanks for pointing this out!
Thank you for working on this feature! I've downloaded the branch and ran 3 tests. The feature appears to be working as expected. 🎉
files-to-download:
- .*
keep-file-path: false
files-to-download:
- .*
keep-file-path: true |
test_runner/flank.ios.yml
Outdated
|
||
## Keeps the full path of downloaded files. Required when file names are not unique. | ||
## Default: false | ||
# keep-file-path: false |
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.
let's keep the newline at the end of the file
https://unix.stackexchange.com/a/18789
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.
code looks great!
33d55ea
Fixes #705
Checklist