mirror of
https://github.com/foomo/shop.git
synced 2025-10-16 12:35:39 +00:00
19 lines
499 B
Makefile
19 lines
499 B
Makefile
SHELL = "/bin/bash"
|
|
|
|
TEST_PATH = github.com/foomo/shop
|
|
# invoke a single test by setting go test -v $(TEST_PATH)/shop
|
|
|
|
clean:
|
|
rm -f customer/diff-*
|
|
|
|
test: clean
|
|
./scripts/test.sh
|
|
|
|
install-test-dependencies:
|
|
go get -u github.com/ventu-io/go-shortid
|
|
go get -u github.com/bwmarrin/snowflake
|
|
go get -u github.com/sergi/go-diff/diffmatchpatch
|
|
go get -u github.com/nbutton23/zxcvbn-go
|
|
go get -u gopkg.in/mgo.v2/bson
|
|
go get -u github.com/mitchellh/mapstructure
|
|
go get -u golang.org/x/crypto/bcrypt
|