Deparallelise unit tests for now since they don't use writers

This commit is contained in:
Neil Alexander 2022-10-07 11:53:55 +01:00 committed by 0x1a8510f2
parent e596d8bb93
commit 4dc4191ace
No known key found for this signature in database
GPG key ID: 1C692E355D76775D

View file

@ -176,7 +176,7 @@ func WithAllDatabases(t *testing.T, testFn func(t *testing.T, db DBType)) {
for dbName, dbType := range dbs {
dbt := dbType
t.Run(dbName, func(tt *testing.T) {
tt.Parallel()
//tt.Parallel()
testFn(tt, dbt)
})
}