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 6b820d91ae
commit fdd2401f7b
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 ./...