Skip to content
Merged
Changes from 1 commit
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
Next Next commit
test: Enabled MySQL database
  • Loading branch information
kyleconroy committed Apr 4, 2024
commit f9f3b355ac9cb9a830a00f11e5f4b55f4d812f5e
16 changes: 8 additions & 8 deletions internal/endtoend/endtoend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ func TestReplay(t *testing.T) {
c.SQL[i].Database = &config.Database{
URI: uri,
}
// case config.EngineMySQL:
// uri := local.MySQL(t, files)
// c.SQL[i].Database = &config.Database{
// URI: uri,
// }
case config.EngineMySQL:
uri := local.MySQL(t, files)
c.SQL[i].Database = &config.Database{
URI: uri,
}
default:
// pass
}
Expand All @@ -146,9 +146,9 @@ func TestReplay(t *testing.T) {
if len(os.Getenv("POSTGRESQL_SERVER_URI")) == 0 {
return false
}
// if len(os.Getenv("MYSQL_SERVER_URI")) == 0 {
// return false
// }
if len(os.Getenv("MYSQL_SERVER_URI")) == 0 {
return false
}
return true
},
},
Expand Down