Skip to content

Commit

Permalink
re-adding Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Feb 28, 2018
1 parent b4899b8 commit 61d7ade
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions stable/overwrite/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
all: test

# You can use `test_playground` to run any test or part of onet
# for more than once in Travis. Change `make test` in .travis.yml
# to `make test_playground`.
test_playground:
cd network; \
for a in $$( seq 10 ); do \
go test -v -race -short || exit 1 ; \
done;

test_verbose:
go test -v -race -short ./...

test_goveralls:
$(shell go env GOPATH)/bin/goveralls -service=travis-ci -race -show

test: test_goveralls

0 comments on commit 61d7ade

Please sign in to comment.