Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion models/test_fixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,14 @@ func InitFixtures(helper testfixtures.Helper, dir string) (err error) {

// LoadFixtures load fixtures for a test database
func LoadFixtures() error {
return fixtures.Load()
var err error
// Database transaction conflicts could occur and result in ROLLBACK
// As a simple workaround, we just retry 5 times.
for i := 0; i < 5; i++ {
err = fixtures.Load()
if err == nil {
break
}
}
return err
}