diff --git a/.travis.yml b/.travis.yml index 72727c9bc..abb240fe8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: node_js node_js: - 0.8 - 0.10 - - 0.11.10 git: - depth: 1000 + depth: 1 +matrix: + fast_finish: true + allow_failures: + - node_js: 0.11 diff --git a/README.md b/README.md index f1c46e1c6..e7ce4aa29 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ nodegit > Node.js libgit2 bindings **v0.1.0** [![Build -Status](https://travis-ci.org/tbranyen/nodegit.png)](https://travis-ci.org/tbranyen/nodegit) +Status](https://travis-ci.org/nodegit/nodegit.png)](https://travis-ci.org/nodegit/nodegit) Maintained by Tim Branyen [@tbranyen](http://twitter.com/tbranyen), Michael Robinson [@codeofinterest](http://twitter.com/codeofinterest), and Nick Kallen [@nk](http://twitter.com/nk), with help from diff --git a/test/repo.js b/test/repo.js index 4608d0d38..70f3128dd 100644 --- a/test/repo.js +++ b/test/repo.js @@ -12,7 +12,7 @@ exports.openInvalidRepo = function(test){ // Test invalid repository git.Repo.open('repos/nonrepo', function(error, repository) { - test.equals(error.message, "Could not find repository from 'repos/nonrepo'"); + test.ok(error instanceof Error); test.done(); }); };