-
Notifications
You must be signed in to change notification settings - Fork 53
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
Results from WPCLI that allows implement in w.org #480
Results from WPCLI that allows implement in w.org #480
Conversation
As asked in #441 (comment)
|
I think is the easiest way. We have to be sure that errors haven't got any false positive. |
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
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.
Thanks @davidperezgar for the PR! Let some feedbacks other then it looks good to me.
- Fix
composer phpmd
errors.- Add
@SuppressWarnings(PHPMD.ExcessiveClassComplexity)
in classPlugin_Check_Command
docblock. - Add
@SuppressWarnings(PHPMD.CyclomaticComplexity)
incheck
method docblck.
- Add
- Additionally if you add Behat tests for new args then it would be great.
Co-authored-by: Mukesh Panchal <[email protected]>
Co-authored-by: Mukesh Panchal <[email protected]>
Thanks for your suggestions! |
I don't particularly like the approach of creating a new output format specific for wporg if we are instead able to consume one of the exiting formats when passing the correct arguments to the CLI script. Before trying to implement a solution here, can we get an answer from systems (e.g., @dd32) to the question asked in #441 (comment)? We also need to decide if #479 is a blocker to this issue, because we may not need a special CLI command at all if we can configure what errors are returned based on severity levels. |
….com:WordPress/plugin-check into 441-plugin-review-team-output-for-wporg-form
@davidperezgar I have fixed PHPMD issues and added behat test for new argument. |
I tried this command:
Argument |
Yes, and it's correct. The format for wporg is very strict and I shouldn't be customized. |
I don't see anything "wrong" here, but I don't see the purpose of it, other than to fix the fact that Instead of adding this for the purposes of adding it to w.org plugin submission, I'd probably just suggest fixing the existing json output, or request that we parse the existing json output. My main issue with this PR is that:
Is completely useless. Pretty much every plugin throws up errors in plugin-check that are considered errors that aren't actually errors. The original "A command that can be run, parsed, and provides a clear block or accept result" really still stands, and while this does do that, it still doesn't provide a the last part in any form that's inline with the plugin submission guidelines IMHO. For example; Are this really something that should block a plugin submission?
So I guess actually, this all comes back to #479 instead as the main blocker. |
@dd32 Do you need something else about this PR? Thanks. |
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.
@dd32 Do you need something else about this PR? Thanks.
Nope, It was just waiting on merging the other needed PRs AFAIK.
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.
Let's not merge this, until it's determined to be needed. See my comment above on #441
Ok! |
Probably we dont need this PR now. It seems it is possible to integrate in org without new format. |
Closing, we've taken a different direction in implementation. See https://meta.trac.wordpress.org/ticket/7778 |
Ok! No problem, if the result is the same! ;) |
We need to give a result from WPCLI that fits meta team in order to execute this plugin in form submission.
This results fits the need asked by Meta #441 (comment), so we could implement as well as this #478 , and it would be the minimal needs to achieve that.
The results has a json format like this:
{"pass":true,"errors":[],"warnings":[]}
The Pass value is true if it has no errors.
I'd need some feedback if the approach is correct, or we could do something more.