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.
1 parent 8f41d68 commit f7c67ebCopy full SHA for f7c67eb
src/Context/FeatureContext.php
@@ -655,6 +655,11 @@ public static function prepare( BeforeSuiteScope $scope ): void {
655
self::$behat_run_dir = getcwd();
656
self::$mysql_binary = Utils\get_mysql_binary_path();
657
658
+ // TODO: Improve Windows support upstream in Utils\get_mysql_binary_path().
659
+ if ( Utils\is_windows() && ! self::$mysql_binary ) {
660
+ self::$mysql_binary = 'mysql.exe';
661
+ }
662
+
663
$result = Process::create( 'wp cli info', null, self::get_process_env_variables() )->run_check();
664
echo "{$result->stdout}\n";
665
0 commit comments