Skip to content

Commit

Permalink
meta-txs: ignore relayer contracts for coverage measure
Browse files Browse the repository at this point in the history
  • Loading branch information
facuspagnuolo committed May 17, 2019
1 parent f092d3b commit 3b91caa
Show file tree
Hide file tree
Showing 4 changed files with 572 additions and 570 deletions.
8 changes: 5 additions & 3 deletions .solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ const skipFiles = [
'lib',
'test',
'acl/ACLSyntaxSugar.sol',
'common/DepositableStorage.sol', // Used in tests that send ETH
'common/SafeERC20.sol', // solidity-coverage fails on assembly if (https://github.com/sc-forks/solidity-coverage/issues/287)
'common/UnstructuredStorage.sol' // Used in tests that send ETH
'common/DepositableStorage.sol', // Used in tests that send ETH
'common/SafeERC20.sol', // solidity-coverage fails on assembly if (https://github.com/sc-forks/solidity-coverage/issues/287)
'common/UnstructuredStorage.sol', // Used in tests that send ETH
'relayer/Relayer.sol', // solidity-coverage uses test-rpc which does not implement eth_signTypedData
'relayer/RelayedAragonApp.sol' // solidity-coverage uses test-rpc which does not implement eth_signTypedData
]

module.exports = {
Expand Down
2 changes: 0 additions & 2 deletions contracts/relayer/Relayer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import "../lib/sig/ECDSA.sol";
import "../lib/misc/EIP712.sol";
import "../lib/math/SafeMath.sol";
import "../apps/AragonApp.sol";
import "../common/IsContract.sol";
import "../common/TimeHelpers.sol";
import "../common/MemoryHelpers.sol";
import "../common/DepositableStorage.sol";

Expand Down
Loading

0 comments on commit 3b91caa

Please sign in to comment.