소스 검색

TESTS: make pytest verbose by default

Thomas LEVEIL 8 년 전
부모
커밋
02f9e29a31
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      test2/Makefile
  2. 1 1
      test2/pytest.ini

+ 2 - 2
test2/Makefile

@@ -7,10 +7,10 @@ update-dependencies:
 
 test-debian: update-dependencies
 	docker build -t jwilder/nginx-proxy:test ..
-	./test.sh -v
+	./test.sh
 
 test-alpine: update-dependencies
 	docker build -f ../Dockerfile.alpine -t jwilder/nginx-proxy:test ..
-	./test.sh -v
+	./test.sh
 
 test: test-debian test-alpine

+ 1 - 1
test2/pytest.ini

@@ -1,3 +1,3 @@
 [pytest]
 # disable the creation of the `.cache` folders
-addopts = -p no:cacheprovider -r s
+addopts = -p no:cacheprovider -r s -v