-
Notifications
You must be signed in to change notification settings - Fork 133
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
Corrected issues with the boolean operators in the config file being … #180
Conversation
…treated as strings.
Hi, what was the result of We should add a unit test which covers that behavior. We also need to
|
It behaved like the parameter wasn’t present in the configuration file and errored out.
…Sent from my iPhone
On Jan 6, 2021, at 7:57 AM, Floris Lambrechts ***@***.***> wrote:
Hi, what was the result of allow-dirty being treated as if it didn't exist?
What's the desired behavior?
We should add a unit test which covers that behavior.
We also need to
Fix failing continuous integration checks.
Move the list of 'bool value name' options to a constant
Drop the 'Bump version' commits in this branch
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
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.
What's going on here? The last commit reverses the first commit...
Hi, I've looked at this a bit. What already works today in the config file is setting
What does not work (but shouldn't, because it's not uniform with other options such as
And what also fails to work:
Your change does fix that last case. I'm going to incorporate that and package it up with some unit tests. |
@stampedeboss, please see #183 which incorporates your fix. If you desire the 'automatic commit dirty files' as a feature (from 579f21c), please open a separate issue for that -- as that would require some discussion. |
the added settings were not seen as valid, for instance, allow-dirty in the configuration file was treated as if it didn't exist since it was a still a string and not a Boolean. I added the additional settings.
…treated as strings.