diff --git a/Makefile b/Makefile
index 7c1991d325df8a2b76f41ded6b7a0f73655e9840..13268462c32bd99833b04b995f26f553a39774c7 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ publish:
 test: lint
 	mocha
 
-test-ci: lint
+test-ci:
 	istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
 
 .PHONY: lint coverage