hnakamur / go-scp

[Unmaintained] A scp client library written in Go
MIT License
41 stars 23 forks source link

Fix test (ssh: must specify HostKeyCallback) #13

Closed k1LoW closed 5 years ago

k1LoW commented 5 years ago

Hi @hnakamur san!

Go 1.8.3 test failed (package math/bits: unrecognized import path "math/bits" (import path does not begin with hostname)). because math/bits was introduced recently.

Which solution do you like?

  1. Move 1.8.3 to allow_failures directive.
  2. Remove 1.8.3 from .travis.yml.
  3. Bump up .travis.yml Go version to 1.11.x and tip and introduce go modules.
hnakamur commented 5 years ago

Thanks for your pull request! Let's go for solution 3.

hnakamur commented 5 years ago

Thanks for the fix!