浏览代码

Add Codecov integration to CircleCI to track JS test coverage, with separate flags (#4219)

Thibaud Colas 7 年之前
父节点
当前提交
432e627054
共有 2 个文件被更改,包括 3 次插入1 次删除
  1. 1 1
      .travis.yml
  2. 2 0
      circle.yml

+ 1 - 1
.travis.yml

@@ -78,7 +78,7 @@ script:
   tox
 
 after_success:
-  - codecov
+  - codecov -F backend
 
 # Who to notify about build results
 notifications:

+ 2 - 0
circle.yml

@@ -17,3 +17,5 @@ test:
     - python -u runtests.py
     - npm run test:unit:coverage -- --runInBand
     - npm run dist
+  post:
+    - bash <(curl -s https://codecov.io/bash) -F frontend