-
Notifications
You must be signed in to change notification settings - Fork 32
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
Exploratory testing fixes #1685
Exploratory testing fixes #1685
Conversation
@@ -12,24 +12,25 @@ | |||
import json | |||
import yaml | |||
import ast | |||
from Config import Config |
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.
We should remove the empty init.py file.
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.
The init.py file is required to convert the lib folder into a python module capable to be imported by the DocGenerator.py module.
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.
Good to know that, I thought it was only needed a lib folder.
if not match: | ||
return False | ||
return True | ||
if regex.match(file): |
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.
Looks good!
@@ -28,8 +25,8 @@ class CodeParser: | |||
""" | |||
brief: Class that parses the content of the test files. | |||
""" | |||
def __init__(self): | |||
self.conf = Config() | |||
def __init__(self, config): |
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 like this!
Description
This PR includes the fixes for the minor problems found during the exploratory testing: