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
parent 3090acd6ee
commit 93a2f27a5f
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

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)
})
}