Explorar el Código

TESTS: make test now runs tests from a docker container

Thomas LEVEIL hace 8 años
padre
commit
743d9801e9
Se han modificado 1 ficheros con 2 adiciones y 3 borrados
  1. 2 3
      test2/Makefile

+ 2 - 3
test2/Makefile

@@ -4,14 +4,13 @@
 
 update-dependencies:
 	requirements/build.sh
-	pip install -U -r requirements/python-requirements.txt
 
 test-debian: update-dependencies
 	docker build -t jwilder/nginx-proxy:test ..
-	pytest -v
+	./test.sh -v
 
 test-alpine: update-dependencies
 	docker build -f ../Dockerfile.alpine -t jwilder/nginx-proxy:test ..
-	pytest -v
+	./test.sh -v
 
 test: test-debian test-alpine