Skip to content

Commit

Permalink
Hardcode build tool versions into tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Jun 21, 2018
1 parent 7205f42 commit defd655
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions daemon/inertiad/project/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ func TestDockerComposeIntegration(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
DockerComposeVersion = "docker/compose:1.21.0"
HerokuishVersion = "gliderlabs/herokuish:v0.4.0"

cli, err := docker.NewEnvClient()
assert.Nil(t, err)
defer cli.Close()
Expand Down Expand Up @@ -176,6 +179,9 @@ func TestDockerBuildIntegration(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
DockerComposeVersion = "docker/compose:1.21.0"
HerokuishVersion = "gliderlabs/herokuish:v0.4.0"

cli, err := docker.NewEnvClient()
assert.Nil(t, err)
defer cli.Close()
Expand Down Expand Up @@ -253,6 +259,9 @@ func TestHerokuishBuildIntegration(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
DockerComposeVersion = "docker/compose:1.21.0"
HerokuishVersion = "gliderlabs/herokuish:v0.4.0"

cli, err := docker.NewEnvClient()
assert.Nil(t, err)
defer cli.Close()
Expand Down

0 comments on commit defd655

Please sign in to comment.