Skip to content

Commit

Permalink
vendor: Remove go-dockerclient dependency (#122)
Browse files Browse the repository at this point in the history
Closes #111
  • Loading branch information
arekkas authored Apr 11, 2018
1 parent 8f0531d commit 2e92e77
Show file tree
Hide file tree
Showing 199 changed files with 20,679 additions and 67 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules/
*.iml
*.exe
.cover/
vendor/
vendor/
cover.out
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sudo: required

go_import_path: github.com/ory-am/dockertest
go_import_path: github.com/ory/dockertest

language: go

Expand All @@ -12,10 +12,10 @@ go:

install:
- go get github.com/mattn/goveralls golang.org/x/tools/cmd/cover github.com/pierrre/gotestcover
- curl -L -s https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -o $GOPATH/bin/dep && chmod +x $GOPATH/bin/dep
- curl -L -s https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o $GOPATH/bin/dep && chmod +x $GOPATH/bin/dep
- dep ensure -vendor-only

script:
- go vet -x .
- gotestcover -coverprofile="cover.out" -race -covermode="atomic" .
- go test -covermode=atomic -coverprofile="cover.out" .
- goveralls -coverprofile="cover.out"
87 changes: 31 additions & 56 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 57 additions & 5 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
Expand All @@ -17,26 +16,79 @@
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
branch = "master"
name = "github.com/Azure/go-ansiterm"

[[constraint]]
name = "github.com/Microsoft/go-winio"
version = "0.4.7"

[[constraint]]
branch = "master"
name = "github.com/Nvveen/Gotty"

[[constraint]]
name = "github.com/cenkalti/backoff"
version = "2.0.0"

[[constraint]]
name = "github.com/fsouza/go-dockerclient"
version = "1.2"
branch = "master"
name = "github.com/containerd/continuity"

[[constraint]]
name = "github.com/docker/go-connections"
version = "0.3.0"

[[constraint]]
name = "github.com/docker/go-units"
version = "0.3.3"

[[constraint]]
name = "github.com/gotestyourself/gotestyourself"
version = "1.3.0"

[[constraint]]
branch = "master"
name = "github.com/lib/pq"

[[constraint]]
name = "github.com/opencontainers/image-spec"
version = "1.0.1"

[[constraint]]
name = "github.com/opencontainers/runc"
version = "0.1.1"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.5"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.1"

[[constraint]]
branch = "master"
name = "golang.org/x/net"

[[constraint]]
branch = "master"
name = "golang.org/x/sys"

[prune]
go-tests = true
unused-packages = true
Loading

0 comments on commit 2e92e77

Please sign in to comment.