Skip to content

Commit 7da7d26

Browse files
committed
0.2.0 release
1 parent 6ba7eb8 commit 7da7d26

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.npmscriptrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
"test":
2020
{
2121
// Provides a report handling command that is executed after running tests / coverage when running on Travis CI.
22-
"travis": { "report": "./node_modules/.bin/codecov" },
23-
2422
"istanbul": { "command": "cover", "options": ["--report lcovonly"] },
2523
"mocha": { "source": "./test-src/mocha", "options": [ "--compilers js:babel-register", "-t 120000 --recursive" ] }
2624
}

test-scripts/scripts/testAll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if (process.env.TRAVIS)
2929
{
3030
exec = './node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha ' + istanbulOptions
3131
+' --report lcovonly -- ' + mochaOptions
32-
+ ' && cat ./coverage-test/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js';
32+
+ ' && ./node_modules/.bin/codecov';
3333
}
3434
else
3535
{

0 commit comments

Comments
 (0)