Skip to content

Commit 0c1df73

Browse files
committed
travis: run memory adapter tests on Travis too.
1 parent 0663132 commit 0c1df73

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ node_js:
88
- '0.12'
99

1010
script:
11-
- 'npm test'
11+
- 'npm run lint'
12+
- 'npm run babel'
13+
- 'npm run mocha:mysql'
14+
- 'npm run mocha:memory'
1215

1316
notifications:
1417
email: false

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"babel": "babel src --out-dir lib",
88
"babel:watch": "babel --watch src --out-dir lib",
99
"lint": "eslint src test",
10-
"mocha": "npm run mocha:sql",
11-
"mocha:sql": "FIRENZE_CONFIG=Mysql mocha --require ./test/setup.js --compilers js:babel-register test/cases/**/*.js",
10+
"mocha": "npm run mocha:mysql",
11+
"mocha:mysql": "FIRENZE_CONFIG=Mysql mocha --require ./test/setup.js --compilers js:babel-register test/cases/**/*.js",
1212
"mocha:memory": "FIRENZE_CONFIG=Memory mocha --require ./test/setup.js --compilers js:babel-register --grep '(JOIN|expression|distinct|OR|NOT)' --invert test/cases/**/*.js",
1313
"test": "run-scripts lint babel mocha",
1414
"istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha -- --require ./test/setup.js --compilers js:babel-register test/cases/**/*.js",

0 commit comments

Comments
 (0)