-
Notifications
You must be signed in to change notification settings - Fork 73
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
allow flags to have false value in when #557
allow flags to have false value in when #557
Conversation
Thanks for the contribution! Unfortunately we can't verify the commit author(s): Michael Goberling <m***@m***.local>. One possible solution is to add that email to your GitHub account. Alternatively you can change your commits to another email and force push the change. After getting your commits associated with your GitHub account, sign the Salesforce.com Contributor License Agreement and this Pull Request will be revalidated. |
96e38f1
to
7b43d5f
Compare
Signed 👍 |
@mdonnalley Thanks for taking a look at this! Added a new failure test case. CLA has been signed and the commits have been updated with a valid author 👍 |
@mdonnalley CLA has been signed. I may have confused the bot with the force push to fix the commit authors. |
hey @MichaelGoberling 👋🏼 ,is this ready for review? if so please update the PR as it is marked as draft and can't be merged. |
Hey @cristiand391 👋 Yup! This is ready for review now. |
|
We have certain scenarios where we want to disallow users from using a
--no
flag when another flag is present. It seems we can do this by checking the value of the flag we want to disallow inwhen
, but it ignoresfalse
values.Flags
Execution
With this PR, the above will throw an error.
Related Issue
Closes #556
Currently a draft PR, because this was added without any tests failing and only one case has been added.