Skip to content

Commit fd22743

Browse files
committed
Fresh start
Signed-off-by: Vishal Rana <[email protected]>
1 parent 1b9ac6d commit fd22743

17 files changed

+14
-1013
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go:
55
- tip
66
install:
77
- make dependency
8-
script:
9-
- make test
8+
# script:
9+
# - make test
1010
after_success:
1111
- bash <(curl -s https://codecov.io/bash)
1212
matrix:

Gopkg.lock

+6-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+5-13
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,17 @@
3030
version = "1.1.1"
3131

3232
[[constraint]]
33-
name = "github.com/go-resty/resty"
34-
version = "1.6.0"
33+
name = "github.com/go-errors/errors"
34+
version = "1.0.1"
3535

3636
[[constraint]]
37-
name = "github.com/labstack/echo"
38-
version = "3.3.5"
37+
name = "github.com/go-resty/resty"
38+
version = "1.6.0"
3939

4040
[[constraint]]
4141
name = "github.com/labstack/gommon"
42-
version = "0.2.5"
43-
44-
[[constraint]]
45-
name = "github.com/shirou/gopsutil"
46-
version = "2.18.4"
42+
version = "0.2.6"
4743

4844
[prune]
4945
go-tests = true
5046
unused-packages = true
51-
52-
[[constraint]]
53-
name = "github.com/go-errors/errors"
54-
version = "1.0.1"

Makefile

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
dependency:
22
go get -u github.com/golang/dep/cmd/dep
3-
dep ensure
4-
5-
test:
6-
echo "" > coverage.txt
7-
for d in $(shell go list ./... | grep -v vendor); do \
8-
go test -race -coverprofile=profile.out -covermode=atomic $$d || exit 1; \
9-
[ -f profile.out ] && cat profile.out >> coverage.txt && rm profile.out; \
10-
done
3+
dep ensure

client.go

-71
This file was deleted.

client_test.go

-1
This file was deleted.

compress.go

-115
This file was deleted.

0 commit comments

Comments
 (0)