소스 검색

[ci] Show Python warnings when building with Python 3

Romain Rigaux 5 년 전
부모
커밋
e2462750b8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .circleci/config.yml

+ 2 - 2
.circleci/config.yml

@@ -214,7 +214,7 @@ jobs:
       - run:
           name: run tests
           command: |
-            ./build/env/bin/hue test unit --with-xunit --with-cover
+            PYTHONWARNINGS=always ./build/env/bin/hue test unit --with-xunit --with-cover
 
       # - run:
       #     name: install dependencies
@@ -248,7 +248,7 @@ jobs:
       - run:
           name: run tests
           command: |
-            ./build/env/bin/hue test unit --with-xunit --with-cover
+            PYTHONWARNINGS=always ./build/env/bin/hue test unit --with-xunit --with-cover
 
 
 workflows: