Skip to content

Commit

Permalink
Merge pull request #13 from kei2100/gotest
Browse files Browse the repository at this point in the history
Use rakyll/gotest
  • Loading branch information
kei2100 authored Apr 4, 2020
2 parents 804d972 + d9496a0 commit 55f84b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif
setup:
go get -u golang.org/x/tools/cmd/goimports
go get -u golang.org/x/lint/golint
go get -u github.com/kyoh86/richgo
go get -u github.com/rakyll/gotest
go mod tidy

# development tasks
Expand All @@ -28,7 +28,7 @@ vet:
go vet $(PACKAGES)

test:
richgo test -v -race $(PACKAGES)
gotest -v -race $(PACKAGES)

test.nocache:
richgo test -count=1 -v -race $(PACKAGES)
gotest -count=1 -v -race $(PACKAGES)
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/kei2100/rotate
go 1.12

require (
github.com/kei2100/filesharedelete v0.0.0-20190518131055-3d9295e38c0f // indirect
github.com/kei2100/filesharedelete v0.0.0-20190518131055-3d9295e38c0f
github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
golang.org/x/sync v0.0.0-20190423024810-112230192c58
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ github.com/kei2100/filesharedelete v0.0.0-20190518131055-3d9295e38c0f h1:KLA+gc/
github.com/kei2100/filesharedelete v0.0.0-20190518131055-3d9295e38c0f/go.mod h1:5O/LGCcam1cZ+Ob/GKhXB9hFAXj5TGVxHuC7qHDDXhg=
github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936 h1:kw1v0NlnN+GZcU8Ma8CLF2Zzgjfx95gs3/GN3vYAPpo=
github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936/go.mod h1:r1VsdOzOPt1ZSrGZWFoNhsAedKnEd6r9Np1+5blZCWk=
golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

0 comments on commit 55f84b8

Please sign in to comment.