-
Notifications
You must be signed in to change notification settings - Fork 35
Create volatile profiles #108
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
Conversation
e86ed5a
to
14ed79a
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #108 +/- ##
==========================================
+ Coverage 43.93% 44.45% +0.52%
==========================================
Files 23 23
Lines 2854 2897 +43
==========================================
+ Hits 1254 1288 +34
- Misses 1600 1609 +9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
2a289c9
to
774a5a3
Compare
acquire/utils.py
Outdated
@@ -101,6 +112,7 @@ def create_argument_parser(profiles: dict, modules: dict) -> argparse.ArgumentPa | |||
parser.add_argument("-l", "--log", type=Path, help="log directory location") | |||
parser.add_argument("--no-log", action="store_true", help=argparse.SUPPRESS) | |||
parser.add_argument("-p", "--profile", choices=profiles.keys(), help="collection profile") | |||
parser.add_argument("--volatile", choices=volatile.keys(), default="none", help="volatile profile") |
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.
--volatile-profile might be more clear otherwise a user enters --volatile and gets.... no volatile.
(DIS-2555)