summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/throttled/throttled.v2/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-06-21 13:10:40 -0700
committerHarrison Healey <harrisonmhealey@gmail.com>2018-06-21 16:10:40 -0400
commit8526739066ccb00ccd24b74650a7d7b284442985 (patch)
tree282512ae2ad95c98a9ca82de304a410b6b56685c /vendor/gopkg.in/throttled/throttled.v2/Makefile
parenta59ccaa8b3844895dde3980e6224fef46ff4a1c8 (diff)
downloadchat-8526739066ccb00ccd24b74650a7d7b284442985.tar.gz
chat-8526739066ccb00ccd24b74650a7d7b284442985.tar.bz2
chat-8526739066ccb00ccd24b74650a7d7b284442985.zip
MM-10934 Update server dependencies. (#8981)
* Changing throttled import path. * Upgrading dependencies.
Diffstat (limited to 'vendor/gopkg.in/throttled/throttled.v2/Makefile')
-rw-r--r--vendor/gopkg.in/throttled/throttled.v2/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/gopkg.in/throttled/throttled.v2/Makefile b/vendor/gopkg.in/throttled/throttled.v2/Makefile
deleted file mode 100644
index cfc235c31..000000000
--- a/vendor/gopkg.in/throttled/throttled.v2/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-.PHONY: test test-cover bench lint get-deps .go-test .go-test-cover
-
-test: .go-test bench lint
-
-test-cover: .go-test-cover bench lint
-
-bench:
- go test -race -bench=. -cpu=1,2,4
-
-lint:
- gofmt -l .
-ifneq ($(TRAVIS_GO_VERSION),1.3) # go vet doesn't play nicely on 1.3
- go vet ./...
-endif
- which golint # Fail if golint doesn't exist
- -golint . # Don't fail on golint warnings themselves
- -golint store # Don't fail on golint warnings themselves
-
-get-deps:
- go get github.com/garyburd/redigo/redis
- go get github.com/hashicorp/golang-lru
- go get github.com/golang/lint/golint
-
-.go-test:
- go test ./...
-
-.go-test-cover:
- go test -coverprofile=throttled.coverage.out .
- go test -coverprofile=store.coverage.out ./store