Travis CI GitHub 集成没有更新构建状态?

Travis CI GitHub integration not updating build status?

this GitHub pull request failed due to a problem installing a dependency. After updating it and trying again, the build seemed to pass 构建的 Travis-CI。但是,在 GitHub 上内联显示的构建状态指示器仍然报告构建失败。有谁知道为什么,或者可以做些什么?

只有一个构建通过(35.3,节点 0.10.x 上的一个),other two failed,这意味着构建完全失败(即使一个 运行 没问题).

如果节点 0.6 和节点 0.8 上的构建是 allowed to fail,您可以在 .travis.yml 中指定。这将导致构建成功:

matrix:
  allow_failures:
    - node_js: 0.6
    - node_js: 0.8

或者,如果您不需要这两个额外的版本,只需从 .travis.yml

中删除 0.6 和 0.8