소스 검색

Pull requests are marked as 'false', not missing

Kevin Brown 10 년 전
부모
커밋
2988cc2bee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Gruntfile.js

+ 1 - 1
Gruntfile.js

@@ -323,7 +323,7 @@ module.exports = function (grunt) {
   ciTasks.push('connect:tests');
 
   // Can't run Sauce Labs tests in pull requests
-  if (process.env.TRAVIS_PULL_REQUEST == null) {
+  if (process.env.TRAVIS_PULL_REQUEST == 'false') {
     ciTasks.push('saucelabs-qunit');
   }