From a583501c94fcc21bf0e9adb48923d6a904a9230e Mon Sep 17 00:00:00 2001 From: Brendan Long Date: Thu, 31 May 2018 17:44:19 -0400 Subject: [PATCH] Fix coverage uploading --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 87f64b6..462c0c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,4 +42,7 @@ jobs: command: opam install -y ocveralls - run: name: Upload coverage report - command: opam config exec -- ocveralls bisect*.out --send --repo_token $COVERALLS_REPO_TOKEN --git + command: | + cd _build/default + shopt -s globstar + opam config exec -- ocveralls **/bisect*.out --send --repo_token $COVERALLS_REPO_TOKEN --git