Skip to content

Commit 7c27bb4

Browse files
committed
Merge pull request #582 from nodegit/fix-ci-false-positives
Fix CI false positives
2 parents 51da106 + 5b928ee commit 7c27bb4

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ env:
22
matrix:
33
- export NODE_VERSION="0.10"
44
- export NODE_VERSION="0.12"
5-
- export NODE_VERSION="iojs"
5+
- export NODE_VERSION="iojs-v1"
66
matrix:
77
fast_finish: true
8-
allow_failures:
9-
- env: NODE_VERSION="0.10"
10-
- env: NODE_VERSION="iojs"
118
before_install:
129
- git clone https://github.com/creationix/nvm.git ./.nvm
1310
- source ./.nvm/nvm.sh

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ var args = cov.concat([
1515
"--expose-gc"
1616
]);
1717

18-
fork(bin, args, { cwd: path.join(__dirname, "../") });
18+
fork(bin, args, { cwd: path.join(__dirname, "../") }).on("close", process.exit);

0 commit comments

Comments
 (0)