Skip to content

Commit

Permalink
Label logs in makefile output.
Browse files Browse the repository at this point in the history
  • Loading branch information
jankaspar committed Oct 16, 2019
1 parent 6ca1c33 commit 73688b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,14 @@ tests-e2e: build-docker e2e-start-cluster
docker run -d --name server --network=host -p=50051:50051 armada
docker run -d --name executor --network=host -v $(shell pwd)/.kube/config:/kube/config -e KUBECONFIG=/kube/config armada-executor
function tearDown {
echo -e "\nexecutor logs:"
docker logs executor
echo -e "\nserver logs:"
docker logs server
docker stop executor server redis
docker rm executor server redis
}
trap tearDown EXIT
echo -e "\nrunning test:"
INTEGRATION_ENABLED=true go test ./e2e/test/... -count=1

0 comments on commit 73688b8

Please sign in to comment.