Re-enable coverage analysis (#2291)
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>pull/2349/head
parent
ca7ee098ca
commit
c7d99531a7
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@ |
||||
#!/usr/bin/env node
|
||||
|
||||
const { execSync } = require('child_process'); |
||||
const { runCoverage } = require('@openzeppelin/test-environment'); |
||||
|
||||
async function main () { |
||||
await runCoverage( |
||||
['mocks'], |
||||
'npm run compile', |
||||
'./node_modules/.bin/mocha --exit --timeout 10000 --recursive'.split(' '), |
||||
); |
||||
|
||||
if (process.env.CI) { |
||||
execSync('curl -s https://codecov.io/bash | bash -s -- -C "$CIRCLE_SHA1"', { stdio: 'inherit' }); |
||||
} |
||||
} |
||||
|
||||
main().catch(e => { |
||||
console.error(e); |
||||
process.exit(1); |
||||
}); |
@ -1,25 +0,0 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
set -o errexit -o pipefail |
||||
|
||||
# Executes cleanup function at script exit. |
||||
trap cleanup EXIT |
||||
|
||||
cleanup() { |
||||
# Delete the symlink created to the allFiredEvents file solidity-coverage creates |
||||
rm -f allFiredEvents |
||||
} |
||||
|
||||
log() { |
||||
echo "$*" >&2 |
||||
} |
||||
|
||||
# The allFiredEvents file is created inside coverageEnv, but solidity-coverage |
||||
# expects it to be at the top level. We create a symlink to fix this |
||||
ln -s coverageEnv/allFiredEvents allFiredEvents |
||||
|
||||
OZ_TEST_ENV_COVERAGE=true npx solidity-coverage || log "Test run failed" |
||||
|
||||
if [ "$CI" = true ]; then |
||||
curl -s https://codecov.io/bash | bash -s -- -C "$CIRCLE_SHA1" |
||||
fi |
Loading…
Reference in new issue