Sfoglia il codice sorgente

TESTS: make test now runs tests from a docker container

Thomas LEVEIL 8 anni fa
parent
commit
743d9801e9
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  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