From 432e6270547bb91e886bad26448ffc040714bce1 Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Tue, 6 Mar 2018 20:19:37 +0200 Subject: [PATCH] Add Codecov integration to CircleCI to track JS test coverage, with separate flags (#4219) --- .travis.yml | 2 +- circle.yml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bf15973c5..37604b3de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -78,7 +78,7 @@ script: tox after_success: - - codecov + - codecov -F backend # Who to notify about build results notifications: diff --git a/circle.yml b/circle.yml index 0f1d97e8c..3f7b9c40d 100644 --- a/circle.yml +++ b/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