2023-06-07 12:00:46 +01:00
|
|
|
diff --git a/tests/.gitignore b/tests/.gitignore
|
|
|
|
|
--- a/tests/.gitignore
|
|
|
|
|
+++ b/tests/.gitignore
|
|
|
|
|
@@ -1 +1 @@
|
|
|
|
|
-go.sum
|
|
|
|
|
+*
|
|
|
|
|
diff --git a/tests/tests_test.go b/tests/tests_test.go
|
|
|
|
|
--- a/tests/tests_test.go
|
|
|
|
|
+++ b/tests/tests_test.go
|
2025-08-21 18:56:05 +01:00
|
|
|
@@ -8,9 +8,11 @@ import (
|
2023-06-07 12:00:46 +01:00
|
|
|
"path/filepath"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
+ _ "github.com/ncruces/go-sqlite3/embed"
|
|
|
|
|
+ sqlite "github.com/ncruces/go-sqlite3/gormlite"
|
|
|
|
|
+
|
2025-08-21 18:56:05 +01:00
|
|
|
"gorm.io/driver/gaussdb"
|
2023-06-07 12:00:46 +01:00
|
|
|
"gorm.io/driver/mysql"
|
|
|
|
|
"gorm.io/driver/postgres"
|
|
|
|
|
- "gorm.io/driver/sqlite"
|
|
|
|
|
"gorm.io/driver/sqlserver"
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
"gorm.io/gorm/logger"
|