Skip to content

Commit

Permalink
travis: fix monster command.
Browse files Browse the repository at this point in the history
  • Loading branch information
prataprc committed May 18, 2017
1 parent 47c7baa commit 1b80dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ before_install:
- go get github.com/mattn/goveralls
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- go get github.com/prataprc/monster
- cd $HOME/gopath/src/github.com/prataprc/monster; go install ./...
- cd $HOME/gopath/src/github.com/prataprc/monster; go install ./...; cd -

script:
- go get ./...
- make test
- go test -run=xxx -test.bench=. -test.benchmem=true ./...
- $HOME/gopath/bin/goveralls -service=travis-ci
- for f in `find ~/ -name "*.prod"`; do echo $f; $HOME/gopath/bin/monster -bagdir ../bags -count 1 -seed 1 $f; done
- for f in `find ~/ -name "*.prod"`; do echo $f; $HOME/gopath/bin/monster -bagdir $HOME/gopath/src/github.com/prataprc/monster/bags -count 1 -seed 1 $f; done

0 comments on commit 1b80dfb

Please sign in to comment.