Tried to set up unit tests tonight as I’ve done myriad times before. This time I was getting nowhere. The database was being created but that was it. As usual, I was running install-wp-tests.sh from the command line after ssh-ing into the Vagrant box.
vagrant@vvv:/srv/www/plugins/htdocs/wp-content/plugins/aviation-weather-from-noaa$ bash bin/install-wp-tests.sh wordpress_test root 'root' localhost latest
+ install_wp
+ '[' -d /srv/www/wordpress-develop/src/ ']'
+ return
+ install_test_suite
++ uname -s
+ [[ Linux == \D\a\r\w\i\n ]]
+ local ioption=-i
+ '[' '!' -d /srv/www/wordpress-develop/tests/phpunit/ ']'
+ cd /srv/www/wordpress-develop/tests/phpunit/
+ '[' '!' -f wp-tests-config.php ']'
+ install_db
+ PARTS=(${DB_HOST//\:/ })
+ local PARTS
+ local DB_HOSTNAME=localhost
+ local DB_SOCK_OR_PORT=
+ local EXTRA=
+ '[' -z localhost ']'
++ grep -e '^[0-9]\{1,\}$'
++ echo
+ '[' ']'
+ '[' -z ']'
+ '[' -z localhost ']'
+ EXTRA=' --host=localhost --protocol=tcp'
+ mysqladmin create wordpress_test --user=root --password=root --host=localhost --protocol=tcp
mysqladmin: CREATE DATABASE failed; error: 'Can't create database 'wordpress_test'; database exists'
I took a shot and ran the install script outside the vm and then copied the wordpress folder it created to /tmp on the Vagrant box. PhpUnit ran great after that.