From d53a44f1c3dbf8db702fb86ef98834983d36b006 Mon Sep 17 00:00:00 2001 From: cgewecke Date: Sun, 8 Sep 2019 21:06:22 -0700 Subject: [PATCH] Show test output in CI --- .circleci/config.yml | 2 +- package.json | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cd5fdc0..ed5b548 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ jobs: - run: name: Run tests command: | - npm run test-cov + npm run test:ci - run: name: Upload coverage command: | diff --git a/package.json b/package.json index fd4a64c..ed7a18f 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,9 @@ }, "scripts": { "nyc": "SILENT=true nyc --exclude '**/sc_temp/**' --exclude '**/test/**'", - "nyc:ci": "SILENT=true nyc --reporter=lcov --exclude '**/sc_temp/**' --exclude '**/test/**'", "test": "npm run nyc -- mocha test/units --timeout 70000 --no-warnings --exit", - "test:debug": "mocha test/units --timeout 70000 --no-warnings --exit", - "test-cov": "npm run nyc:ci -- mocha test/units --timeout 70000 --no-warnings --exit" + "test:ci": "SILENT=true nyc --reporter=lcov --exclude '**/sc_temp/**' --exclude '**/test/**' -- mocha test/units --timeout 70000 --no-warnings --exit", + "test:debug": "mocha test/units --timeout 70000 --no-warnings --exit" }, "homepage": "https://github.com/sc-forks/solidity-coverage", "repository": {