Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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