0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Merge pull request #5182 from sebgie/update-test-all

Remove lint task from test-all
This commit is contained in:
Hannah Wolfe 2015-04-23 11:14:32 +01:00
commit 62c60c8834

View file

@ -589,7 +589,7 @@ var _ = require('lodash'),
//
// `grunt validate` is called by `npm test` and is used by Travis.
grunt.registerTask('validate', 'Run tests and lint code',
['init', 'test-all']);
['init', 'lint', 'test-all']);
// ### Test-All
// **Main testing task**
@ -600,7 +600,7 @@ var _ = require('lodash'),
// details of each of the test suites.
//
grunt.registerTask('test-all', 'Run tests and lint code',
['lint', 'test-routes', 'test-module', 'test-unit', 'test-integration', 'shell:ember:test', 'test-functional']);
['test-routes', 'test-module', 'test-unit', 'test-integration', 'shell:ember:test', 'test-functional']);
// ### Lint
//