Browse code

Fix "make test" failing on missing "test-unit"

Commit dbf580be57a4bb854d7ce20d313e3a22ea337be5 removed
this helper script because it's no longer used in CI.

However, the "make test" target in the Makefile still
called this helper, resulting it to fail.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2017/11/20 19:56:27
Showing 1 changed files
... ...
@@ -158,8 +158,8 @@ run: build ## run the docker daemon in a container
158 158
 shell: build ## start a shell inside the build env
159 159
 	$(DOCKER_RUN_DOCKER) bash
160 160
 
161
-test: build ## run the unit, integration and docker-py tests
162
-	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-unit test-integration test-docker-py
161
+test: build test-unit ## run the unit, integration and docker-py tests
162
+	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-integration test-docker-py
163 163
 
164 164
 test-docker-py: build ## run the docker-py tests
165 165
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-docker-py