diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | libvirt/provider.go | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4714805e..0fddc031 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,5 @@ script: - make gofmtcheck - make vet - golint -set_exit_status libvirt/ + - make test - goveralls -coverprofile=profile.cov -service=travis-ci diff --git a/libvirt/provider.go b/libvirt/provider.go index cbe9ab95..ea7a250a 100644 --- a/libvirt/provider.go +++ b/libvirt/provider.go @@ -10,6 +10,8 @@ import ( // Global poolMutexKV var poolMutexKV = mutexkv.NewMutexKV() + +// LibvirtClient global variable holding the connection to the libvirtd daemon var LibvirtClient *libvirt.Connect // Provider libvirt |