We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mysql.exe
1 parent 98b1583 commit a2befafCopy full SHA for a2befaf
src/Context/FeatureContext.php
@@ -668,6 +668,11 @@ public static function prepare( BeforeSuiteScope $scope ): void {
668
self::$behat_run_dir = getcwd();
669
self::$mysql_binary = Utils\get_mysql_binary_path();
670
671
+ // TODO: Improve Windows support upstream in Utils\get_mysql_binary_path().
672
+ if ( self::is_windows() && ! self::$mysql_binary ) {
673
+ self::$mysql_binary = 'mysql.exe';
674
+ }
675
+
676
$result = Process::create( 'wp cli info', null, self::get_process_env_variables() )->run_check();
677
echo "{$result->stdout}\n";
678
0 commit comments