File tree 6 files changed +21
-1
lines changed
6 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ - 0.1.1 2013-10-13
2
+ Travis and Coveralls integration testing.
3
+
1
4
- 0.1.0 2013-10-13
2
5
Removing built-in Redis store to emphasize that you should plug in your own
3
6
cache store.
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ test: cover check-coverage
17
17
test-cov : cover check-coverage
18
18
open coverage/lcov-report/index.html
19
19
20
+ test-travis : lint
21
+ ./node_modules/.bin/istanbul cover test/run.js --report lcovonly \
22
+ -- -T unit,functional -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
20
23
lint :
21
24
./node_modules/.bin/jshint ./lib --config $(BASE ) /.jshintrc && \
22
25
./node_modules/.bin/jshint ./test --config $(BASE ) /.jshintrc
Original file line number Diff line number Diff line change
1
+ [ ![ build status] ( https://secure.travis-ci.org/BryanDonovan/node-cache-manager.png )] ( http://travis-ci.org/BryanDonovan/node-cache-manager )
2
+ [ ![ Coverage Status] ( https://coveralls.io/repos/BryanDonovan/node-cache-manager/badge.png?branch=master )] ( https://coveralls.io/r/BryanDonovan/node-cache-manager?branch=master )
3
+
1
4
node-cache-manager
2
5
======================
3
6
Original file line number Diff line number Diff line change
1
+ service_name : travis-ci
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cache-manager" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " Cache module for Node.js" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
23
23
"lru-cache" : " >=2.3.0"
24
24
},
25
25
"devDependencies" : {
26
+ "coveralls" : " ~2.3.0" ,
26
27
"istanbul" : " >=0.1.29" ,
27
28
"jshint" : " >=1.0.1" ,
28
29
"mocha" : " >=1.8.1" ,
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - 0.8
4
+ - 0.10
5
+ script : ' make test-travis'
6
+ branches :
7
+ only :
8
+ - master
9
+ - develop
You can’t perform that action at this time.
0 commit comments