Skip to content

Commit

Permalink
Disable sqlcipher logging in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jun 17, 2024
1 parent f6eb4c7 commit 415384d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/sqlcipher_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@


PASSPHRASE = 'testing sqlcipher'
PRAGMAS = {'kdf_iter': 10} # Much faster for testing. Totally unsafe.
PRAGMAS = {
'kdf_iter': 10, # Much faster for testing. Totally unsafe.
'cipher_log_level': 'none',
}
db = SqlCipherDatabase('peewee_test.dbc', passphrase=PASSPHRASE,
pragmas=PRAGMAS)
ext_db = SqlCipherExtDatabase('peewee_test.dbx', passphrase=PASSPHRASE,
Expand Down

0 comments on commit 415384d

Please sign in to comment.