-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix coverage task * tests: fix gas costs tests for coverage * tests: fix gas costs tests for coverage * chore: use GH actions coveralls * chore: unskip contracts from coverage * chore: remove coveralls step
- Loading branch information
1 parent
cea15fe
commit 847269c
Showing
6 changed files
with
24 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
const skipFiles = [ | ||
'lib', | ||
'test', | ||
'acl/ACLSyntaxSugar.sol', | ||
'common/DepositableStorage.sol', // Used in tests that send ETH | ||
'common/UnstructuredStorage.sol' // Used in tests that send ETH | ||
] | ||
|
||
module.exports = { | ||
norpc: true, | ||
compileCommand: '../node_modules/.bin/truffle compile', | ||
testCommand: 'node --max-old-space-size=4096 ../node_modules/.bin/truffle test --network coverage', | ||
skipFiles, | ||
skipFiles: [ | ||
'lib', | ||
'test', | ||
'acl/ACLSyntaxSugar.sol', | ||
], | ||
mocha: { | ||
grep: '@skip-on-coverage', // Find everything with this tag | ||
invert: true // Run the grep's inverse set. | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.