From 253de9264eb41959eee691955e1aa69cce208195 Mon Sep 17 00:00:00 2001 From: cgewecke Date: Sat, 21 Sep 2019 22:11:00 -0700 Subject: [PATCH 1/3] Add @beta to installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3b5412..6fe25c4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ find discrepancies between the coverage report and your suite's behavior, please ### Install ``` -$ npm install --save-dev solidity-coverage +$ npm install --save-dev solidity-coverage@beta ``` ### Usage notes: + Coverage runs tests a little more slowly. From 63a6a6529d1ae969ab4bc731af3411430e0d4eb8 Mon Sep 17 00:00:00 2001 From: cgewecke Date: Sat, 21 Sep 2019 22:32:41 -0700 Subject: [PATCH 2/3] Fix zeppelin CI run --- scripts/run-zeppelin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-zeppelin.sh b/scripts/run-zeppelin.sh index 2bd8583..1af03dd 100755 --- a/scripts/run-zeppelin.sh +++ b/scripts/run-zeppelin.sh @@ -42,4 +42,4 @@ echo ">>>>> yarn add -dev $PR_PATH" yarn add "$PR_PATH" --dev # Track perf -time npx truffle run coverage +time npx truffle run coverage --network development From 49cfb6168f76f4c0b32dd6f387ff5636b70c892f Mon Sep 17 00:00:00 2001 From: cgewecke Date: Sun, 22 Sep 2019 01:11:01 -0700 Subject: [PATCH 3/3] Fix ganache options usage note in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6fe25c4..4d5310e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,8 @@ $ npm install --save-dev solidity-coverage@beta ### Usage notes: + Coverage runs tests a little more slowly. + Coverage distorts gas consumption. Tests that check exact gas consumption should be skipped. -+ Coverage launches its own in-process ganache server. [ganache options](https://github.com/trufflesuite/ganache-core#options) via the `providerOptions` key in your `.solcover.js` config file. ++ Coverage launches its own in-process ganache server. ++ You can set [ganache options](https://github.com/trufflesuite/ganache-core#options) using the `providerOptions` key in your `.solcover.js` config. ### Truffle V5