Pārlūkot izejas kodu

Merge pull request #35547 from thaJeztah/fix-make-test

  Fix "make test" failing on missing "test-unit"
Vincent Demeester 7 gadi atpakaļ
vecāks
revīzija
dc7ba2ca3b
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -158,8 +158,8 @@ run: build ## run the docker daemon in a container
 shell: build ## start a shell inside the build env
 shell: build ## start a shell inside the build env
 	$(DOCKER_RUN_DOCKER) bash
 	$(DOCKER_RUN_DOCKER) bash
 
 
-test: build ## run the unit, integration and docker-py tests
-	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-unit test-integration test-docker-py
+test: build test-unit ## run the unit, integration and docker-py tests
+	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-integration test-docker-py
 
 
 test-docker-py: build ## run the docker-py tests
 test-docker-py: build ## run the docker-py tests
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-docker-py
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-docker-py