Remove go build -i flag

pull/155/head
Vojtech Vitek 2019-03-05 23:40:53 -05:00
parent e1b59f5cd0
commit a407efa898
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ func TestFix(t *testing.T) {
defer os.Remove("./bin/fix-goose") // clean up
commands := []string{
"go build -i -o ./bin/fix-goose ./cmd/goose",
"go build -o ./bin/fix-goose ./cmd/goose",
fmt.Sprintf("./bin/fix-goose -dir=%s create create_table", dir),
fmt.Sprintf("./bin/fix-goose -dir=%s create add_users", dir),
fmt.Sprintf("./bin/fix-goose -dir=%s create add_indices", dir),

View File

@ -13,7 +13,7 @@ func TestDefaultBinary(t *testing.T) {
t.Parallel()
commands := []string{
"go build -i -o ./bin/goose ./cmd/goose",
"go build -o ./bin/goose ./cmd/goose",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db up",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db version",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db down",
@ -52,7 +52,7 @@ func TestLiteBinary(t *testing.T) {
// this has to be done outside of the loop
// since go only supports space separated tags list.
cmd := exec.Command("go", "build", "-tags='no_mysql no_sqlite no_psql'", "-i", "-o", "./bin/light-goose", "./cmd/goose")
cmd := exec.Command("go", "build", "-tags='no_mysql no_sqlite no_psql'", "-o", "./bin/light-goose", "./cmd/goose")
out, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
@ -78,7 +78,7 @@ func TestCustomBinary(t *testing.T) {
t.Parallel()
commands := []string{
"go build -i -o ./bin/custom-goose ./examples/go-migrations",
"go build -o ./bin/custom-goose ./examples/go-migrations",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db up",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db version",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db down",