Skip to content

Commit 4489633

Browse files
committed
Makefile: get rid of go mod download
We don't need that, not anymore! x)
1 parent 7453581 commit 4489633

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ env:
1616
- GO111MODULE=on
1717
install:
1818
- travis-scripts/win-setup.bash
19-
- make testdeps
2019
script:
2120
- travis_wait 25 travis-scripts/run-tests.bash
2221
services:

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,12 @@ fmt:
1616
GO111MODULE=off go get mvdan.cc/gofumpt
1717
gofumpt -s -w .
1818

19-
testdeps:
20-
go mod download
21-
2219
pretest: lint
2320

2421
gotest:
2522
go test -race -vet all ./...
2623

27-
test: testdeps pretest gotest
24+
test: pretest gotest
2825

2926
integration:
3027
go test -tags docker_integration -run TestIntegration -v

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ install:
1515
- rmdir c:\go /s /q
1616
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip
1717
- 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL
18-
build_script:
19-
- make testdeps
2018
test_script:
2119
- make pretest gotest
2220
matrix:

0 commit comments

Comments
 (0)