Skip to content

Commit

Permalink
Skip style tests in node 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfpessoa committed Jul 12, 2016
1 parent 0f38cde commit 80d92ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
test:
override:
- nvm install 0.12 && npm test
- nvm install 4 && npm test
- nvm install 5 && npm test
- nvm install 4 && npm run style && npm test
- nvm install 5 && npm run style && npm test
post:
- npm install
- npm test
- nvm install 6 && npm install && npm run style && npm test
- cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"style": "eslint src/*.js src/ui/js/*.js",
"coverage": "istanbul cover _mocha -- -u exports -R spec ./test/**/*",
"check-coverage": "istanbul check-coverage --statements 90 --functions 90 --branches 85 --lines 90 ./coverage/coverage.json",
"test": "npm run style && npm run coverage && npm run check-coverage",
"test": "npm run coverage && npm run check-coverage",
"codacy": "npm run coverage && cat ./coverage/lcov.info | codacy-coverage",
"preversion": "npm run release && npm test",
"version": "npm run release-bower && git add -A src dist package.json bower.json",
Expand Down

0 comments on commit 80d92ba

Please sign in to comment.