You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the WP CLI command is limited to only run checks against plugins that are installed on the same site as Plugin Check.
This is because it eventually calls the Plugin_Request_Utility::get_plugin_basename_from_input() method during the setup process which throws an Exception if the plugin is not installed.
To satisfy the requirements of #441 (comment), we need to be able to run checks against a plugin that is located outside the WordPress filesystem, e.g. /tmp.
Ideally, this would work by passing a CLI command like:
wp plugin check /tmp/plugin-path
When the path is not to an active plugin, only static checks should be eligible to be run.
The text was updated successfully, but these errors were encountered:
Currently the WP CLI command is limited to only run checks against plugins that are installed on the same site as Plugin Check.
This is because it eventually calls the
Plugin_Request_Utility::get_plugin_basename_from_input()
method during the setup process which throws an Exception if the plugin is not installed.To satisfy the requirements of #441 (comment), we need to be able to run checks against a plugin that is located outside the WordPress filesystem, e.g.
/tmp
.Ideally, this would work by passing a CLI command like:
When the path is not to an active plugin, only static checks should be eligible to be run.
The text was updated successfully, but these errors were encountered: