-
-
Notifications
You must be signed in to change notification settings - Fork 249
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 YAML runner config support #571
Conversation
src/utils/custom_yaml.py
Outdated
contents='' | ||
for line in content.split('\n'): | ||
if not re.match (r'\s*//.*', line): | ||
contents += line + "\n" |
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.
I believe this is not needed. Yaml supports comments by default (in the specification and in the library)
Hi @anthony-francisco thanks for PR! I left a couple of comments which would be cool to solve |
Hi @bugy , I made some changes (regarding your comments). |
Hi @anthony-francisco thanks :) Could you also check my comment in custom_yaml.py? |
Hi @bugy , I forget to add/push/commit the moved of the "import yaml" line inside the loads function. |
Great, thank you for the work! |
No description provided.