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": {