Chore: Attempt to reduce flakiness in integration tests (#97247)

* sqlstore/sqlutil: set sync=OFF for sqlite in tests if wal=true

* testinfra: set max open/idle conn to 2 to match e2e tests
This commit is contained in:
Matheus Macabu
2024-12-10 10:55:18 +01:00
committed by GitHub
parent aa5ba238a4
commit dd969f8a54
2 changed files with 9 additions and 3 deletions

View File

@ -110,7 +110,8 @@ func sqLite3TestDB() (*TestDB, error) {
ret.ConnStr = "file:" + sqliteDb + "?cache=private&mode=rwc"
if os.Getenv("SQLITE_JOURNAL_MODE") != "false" {
ret.ConnStr += "&_journal_mode=WAL"
// For tests, set sync=OFF for faster commits. Reference: https://www.sqlite.org/pragma.html#pragma_synchronous.
ret.ConnStr += "&_journal_mode=WAL&_synchronous=OFF"
}
ret.Path = sqliteDb