github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/environs/manual/winrmprovisioner/package_test.go (about) 1 // Copyright 2016 Canonical Ltd. 2 // Copyright 2016 Cloudbase Solutions SRL 3 // Licensed under the AGPLv3, see LICENCE file for details. 4 package winrmprovisioner_test 5 6 import ( 7 "runtime" 8 stdtesting "testing" 9 10 gc "gopkg.in/check.v1" 11 ) 12 13 func Test(t *stdtesting.T) { 14 if runtime.GOOS == "windows" { 15 t.Skip("Manual provider as client is not supported on windows") 16 } 17 gc.TestingT(t) 18 }