Browse Source

add make test-integration

Docker-DCO-1.1-Signed-off-by: Victor Vieux <victor.vieux@docker.com> (github: vieux)
Victor Vieux 11 years ago
parent
commit
4326e541f8
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Makefile

+ 4 - 1
Makefile

@@ -1,4 +1,4 @@
-.PHONY: all binary build cross default docs docs-build docs-shell shell test
+.PHONY: all binary build cross default docs docs-build docs-shell shell test test-integration
 
 
 GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
 GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
 DOCKER_IMAGE := docker:$(GIT_BRANCH)
 DOCKER_IMAGE := docker:$(GIT_BRANCH)
@@ -25,6 +25,9 @@ docs-shell: docs-build
 test: build
 test: build
 	$(DOCKER_RUN_DOCKER) hack/make.sh test test-integration
 	$(DOCKER_RUN_DOCKER) hack/make.sh test test-integration
 
 
+test-integration: build
+	$(DOCKER_RUN_DOCKER) hack/make.sh test-integration
+
 shell: build
 shell: build
 	$(DOCKER_RUN_DOCKER) bash
 	$(DOCKER_RUN_DOCKER) bash