summary refs log tree commit diff
path: root/changelog.d/11702.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Optionally use an on-disk sqlite db in tests (#11702)David Robertson2022-01-071-0/+1
* Optionally use an on-disk sqlite db in tests When debugging a test it is sometimes useful to inspect the state of the DB. This is not easy when the db is in-memory: one cannot attach the sqlite CLI to another process's DB. With this change, if SYNAPSE_TEST_PERSIST_SQLITE_DB is set, we use `_trial_temp/test.db` as our sqlite database. One can then use `sqlite3 _trial_temp/test.db` and query to your heart's content. The DB is destroyed and recreated between different test cases. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>