Adding Kafka docker container and utilizing it in unit tests

This commit is contained in:
Cameron Sparr
2015-08-04 08:58:32 -06:00
parent b3cb8d0f53
commit 77dd1e3d45
5 changed files with 40 additions and 17 deletions

View File

@@ -2,9 +2,12 @@ prepare:
go get -d -v -t ./...
docker-compose up -d --no-recreate
test: prepare
test-short: prepare
go test -short ./...
test: prepare
go test ./...
update:
go get -u -v -d -t ./...