update tests' go.mod and tests_all.sh (#4774)

This commit is contained in:
kinggo 2021-10-13 14:41:33 +08:00 committed by GitHub
parent ec58e3319f
commit 696092e287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@ require (
gorm.io/driver/mysql v1.1.2 gorm.io/driver/mysql v1.1.2
gorm.io/driver/postgres v1.1.2 gorm.io/driver/postgres v1.1.2
gorm.io/driver/sqlite v1.1.6 gorm.io/driver/sqlite v1.1.6
gorm.io/driver/sqlserver v1.0.9 gorm.io/driver/sqlserver v1.1.0
gorm.io/gorm v1.21.15 gorm.io/gorm v1.21.16
) )
replace gorm.io/gorm => ../ replace gorm.io/gorm => ../

View File

@ -9,7 +9,7 @@ fi
if [ -d tests ] if [ -d tests ]
then then
cd tests cd tests
go get -u ./... go get -u -t ./...
go mod download go mod download
go mod tidy go mod tidy
cd .. cd ..