Skip to content

Commit

Permalink
Merge pull request #5082 from sharifelgamal/windows-ci
Browse files Browse the repository at this point in the history
Fix TestVersionUpgrade for Windows
  • Loading branch information
sharifelgamal authored Aug 14, 2019
2 parents 14db2d7 + 36961c9 commit 88c27da
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/integration/version_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ func TestVersionUpgrade(t *testing.T) {
err := fileExists(fname)
if err != nil { // download file if it is not downloaded by other test
dest := filepath.Join(*testdataDir, fmt.Sprintf("minikube-%s-%s-latest-stable", runtime.GOOS, runtime.GOARCH))
if runtime.GOOS == "windows" {
dest += ".exe"
}
err := downloadMinikubeBinary(t, dest, "latest")
if err != nil {
// binary is needed for the test
Expand Down

0 comments on commit 88c27da

Please sign in to comment.