Skip to content

Commit d53a44f

Browse files
committed
Show test output in CI
1 parent 35aa892 commit d53a44f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- run:
3434
name: Run tests
3535
command: |
36-
npm run test-cov
36+
npm run test:ci
3737
- run:
3838
name: Upload coverage
3939
command: |

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
},
1010
"scripts": {
1111
"nyc": "SILENT=true nyc --exclude '**/sc_temp/**' --exclude '**/test/**'",
12-
"nyc:ci": "SILENT=true nyc --reporter=lcov --exclude '**/sc_temp/**' --exclude '**/test/**'",
1312
"test": "npm run nyc -- mocha test/units --timeout 70000 --no-warnings --exit",
14-
"test:debug": "mocha test/units --timeout 70000 --no-warnings --exit",
15-
"test-cov": "npm run nyc:ci -- mocha test/units --timeout 70000 --no-warnings --exit"
13+
"test:ci": "SILENT=true nyc --reporter=lcov --exclude '**/sc_temp/**' --exclude '**/test/**' -- mocha test/units --timeout 70000 --no-warnings --exit",
14+
"test:debug": "mocha test/units --timeout 70000 --no-warnings --exit"
1615
},
1716
"homepage": "https://github.com/sc-forks/solidity-coverage",
1817
"repository": {

0 commit comments

Comments
 (0)