Make coverage report with only one package script.

This commit is contained in:
Viktor Kovacs 2021-03-31 16:24:17 +02:00
parent e48c1b51e1
commit 515caed254
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ build_script:
test_script:
- npm run test
- npm run coverage
- npm run codecov
artifacts:

View File

@ -15,8 +15,8 @@
},
"scripts": {
"test": "mocha test",
"coverage": "nyc --reporter=lcov mocha test",
"codecov": "codecov",
"coverage": "nyc mocha test",
"codecov": "nyc --reporter=lcov mocha test && codecov",
"build": "python tools/create_package.py",
"update": "python tools/update_includes.py",
"svg": "python tools/optimize_svg_files.py"