diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-11-12 13:06:24 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-11-12 13:06:24 +0100 |
commit | 75d7d07ae63e4f499ab61380604c8cd532427a7b (patch) | |
tree | 66f20fe5eacc9a4e75a459cdd45d46bfebdf0239 | |
parent | 2363c716c0c6dfd91c7a2f1ea00881160b612c84 (diff) | |
download | hubzilla-ddev-75d7d07ae63e4f499ab61380604c8cd532427a7b.tar.gz hubzilla-ddev-75d7d07ae63e4f499ab61380604c8cd532427a7b.tar.bz2 hubzilla-ddev-75d7d07ae63e4f499ab61380604c8cd532427a7b.zip |
Fix test db credentials in config.
-rwxr-xr-x | .ddev/commands/web/phpunit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ddev/commands/web/phpunit b/.ddev/commands/web/phpunit index 126406a..b86cc32 100755 --- a/.ddev/commands/web/phpunit +++ b/.ddev/commands/web/phpunit @@ -29,8 +29,8 @@ fi export XDEBUG_CONFIG="output_dir=tests/results" export HZ_TEST_DB_HOST=db -export HZ_TEST_DB_USER=db -export HZ_TEST_DB_PASS=db +export HZ_TEST_DB_USER=test_user +export HZ_TEST_DB_PASS=hubzilla export HZ_TEST_DB_TYPE=$DDEV_DATABASE_FAMILY XDEBUG_MODE=$mode vendor/bin/phpunit -c tests/phpunit.xml $extra_args "$@" |