Skip to content

Commit

Permalink
Merge branch 'release/0.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-hanna committed May 13, 2019
2 parents 6007f77 + 1baa780 commit cf0bbdb
Show file tree
Hide file tree
Showing 35 changed files with 3,777 additions and 28 deletions.
22 changes: 0 additions & 22 deletions Godeps/Godeps.json

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/Readme

This file was deleted.

10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ fmt:
test:
bash -c 'go list ./... | grep -v vendor | xargs -n1 go test -timeout=30s -tags="unit integration e2e"'

.PHONY: deps
deps:
@go build -v ./...

.PHONY: vendor
vendor:
@go mod vendor

# thanks!
# https://gist.github.com/skarllot/13ebe8220822bc19494c8b076aabe9fc
test-cover-html:
echo "mode: count" > coverage-all.out
$(foreach pkg,$(PACKAGES),\
go test -tags="unit integration e2e" -coverprofile=coverage.out -covermode=count $(pkg);\
tail -n +2 coverage.out >> coverage-all.out;)
tail -n +2 coverage.out >> coverage-all.out;)
6 changes: 6 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module github.com/adam-hanna/sessions

require (
github.com/garyburd/redigo v0.0.0-20170216214944-0d253a66e6e1
github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222
)
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
github.com/garyburd/redigo v0.0.0-20170216214944-0d253a66e6e1 h1:EMQBnddyoHv0zXA5BwDHsI12dSbmCQlFfpYtcyL9Uh8=
github.com/garyburd/redigo v0.0.0-20170216214944-0d253a66e6e1/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY=
github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222 h1:goeTyGkArOZIVOMA0dQbyuPWGNQJZGPwPu/QS9GlpnA=
github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34=
175 changes: 175 additions & 0 deletions vendor/github.com/garyburd/redigo/LICENSE

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

54 changes: 54 additions & 0 deletions vendor/github.com/garyburd/redigo/internal/commandinfo.go

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

Loading

0 comments on commit cf0bbdb

Please sign in to comment.