diff options
author | Loïc Dachary | 2023-02-20 23:17:52 +0100 |
---|---|---|
committer | Loïc Dachary | 2023-03-12 12:26:22 +0100 |
commit | 7180a3222a00c33ec7dc9bcaa7e5a1e3ae924735 (patch) | |
tree | e31f0ba1e8ae74d6baca483716ad327d0ae7f346 | |
parent | 326174064ba6dbd379ea82e9643e23fe684ad96f (diff) |
[CI] set PASSWORD_HASH_ALGO = argon2 for integration tests
(cherry picked from commit 1d7ce2a39c841e77492ef08c0e86c3544ecca88d)
(cherry picked from commit 3af8757583ab9bf8fc5eb05ed1e6901a34682512)
(cherry picked from commit 0b818152096d58e402e3c8bbc2415695af0cdfb9)
-rw-r--r-- | tests/mssql.ini.tmpl | 1 | ||||
-rw-r--r-- | tests/mysql.ini.tmpl | 1 | ||||
-rw-r--r-- | tests/mysql8.ini.tmpl | 1 | ||||
-rw-r--r-- | tests/pgsql.ini.tmpl | 1 | ||||
-rw-r--r-- | tests/sqlite.ini.tmpl | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/mssql.ini.tmpl b/tests/mssql.ini.tmpl index 9cec6169f..3ee64628e 100644 --- a/tests/mssql.ini.tmpl +++ b/tests/mssql.ini.tmpl @@ -98,6 +98,7 @@ COLORIZE = true LEVEL = Debug [security] +PASSWORD_HASH_ALGO = argon2 DISABLE_GIT_HOOKS = false INSTALL_LOCK = true SECRET_KEY = 9pCviYTWSb diff --git a/tests/mysql.ini.tmpl b/tests/mysql.ini.tmpl index b286f37bf..271e4150d 100644 --- a/tests/mysql.ini.tmpl +++ b/tests/mysql.ini.tmpl @@ -95,6 +95,7 @@ COLORIZE = true LEVEL = Debug [security] +PASSWORD_HASH_ALGO = argon2 DISABLE_GIT_HOOKS = false INSTALL_LOCK = true SECRET_KEY = 9pCviYTWSb diff --git a/tests/mysql8.ini.tmpl b/tests/mysql8.ini.tmpl index f290efe1d..1a4fb745b 100644 --- a/tests/mysql8.ini.tmpl +++ b/tests/mysql8.ini.tmpl @@ -95,6 +95,7 @@ COLORIZE = true LEVEL = Debug [security] +PASSWORD_HASH_ALGO = argon2 DISABLE_GIT_HOOKS = false INSTALL_LOCK = true SECRET_KEY = 9pCviYTWSb diff --git a/tests/pgsql.ini.tmpl b/tests/pgsql.ini.tmpl index fbfbae7c6..93095f2ff 100644 --- a/tests/pgsql.ini.tmpl +++ b/tests/pgsql.ini.tmpl @@ -99,6 +99,7 @@ COLORIZE = true LEVEL = Debug [security] +PASSWORD_HASH_ALGO = argon2 DISABLE_GIT_HOOKS = false INSTALL_LOCK = true SECRET_KEY = 9pCviYTWSb diff --git a/tests/sqlite.ini.tmpl b/tests/sqlite.ini.tmpl index f6f8c70ed..667eb4290 100644 --- a/tests/sqlite.ini.tmpl +++ b/tests/sqlite.ini.tmpl @@ -94,6 +94,7 @@ COLORIZE = true LEVEL = Debug [security] +PASSWORD_HASH_ALGO = argon2 DISABLE_GIT_HOOKS = false INSTALL_LOCK = true SECRET_KEY = 9pCviYTWSb |