Mercurial > p > roundup > code
changeset 7170:2acea75cd7e5
Setting PBKDF2 rounds to 1000 for testing
Override in the module that defines the config.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 25 Feb 2023 17:14:18 -0500 |
| parents | 5cbe5f2a636b |
| children | 4e3abaa16296 |
| files | test/db_test_base.py |
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/db_test_base.py Sat Feb 25 17:11:13 2023 -0500 +++ b/test/db_test_base.py Sat Feb 25 17:14:18 2023 -0500 @@ -57,6 +57,8 @@ # these TRACKER_WEB and MAIL_DOMAIN values are used in mailgw tests config.MAIL_DOMAIN = "your.tracker.email.domain.example" config.TRACKER_WEB = "http://tracker.example/cgi-bin/roundup.cgi/bugs/" +# override number of rounds to reduce CI time +#config.PASSWORD_PBKDF2_DEFAULT_ROUNDS = 1000 # uncomment the following to have excessive debug output from test cases # FIXME: tracker logging level should be increased by -v arguments # to 'run_tests.py' script
