From e882f3670ba65023aef451720344db368f12935b Mon Sep 17 00:00:00 2001 From: jeroenpeeters Date: Thu, 30 Mar 2017 19:18:04 +0200 Subject: [PATCH] use current path in node test container. otherwise the generated paths in the lcov.info file do not match and render the lcov file invalid/incompatible --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index d33b7be..3b0673f 100644 --- a/circle.yml +++ b/circle.yml @@ -8,7 +8,7 @@ dependencies: test: override: - - docker run --rm -v $PWD:/src -w /src node:7 sh -c 'npm install; npm test' + - docker run --rm -v $PWD:$PWD -w $PWD node:7 sh -c 'npm install; npm test' post: - cp -r ./coverage/ $CIRCLE_ARTIFACTS - bash <(curl -s https://codecov.io/bash)