Skip to content

Commit ccca4d3

Browse files
committed
Merge pull request nodegit#352 from nodegit/fix-appveyor
Fixed AppVeyor
2 parents 76829fc + 11e7964 commit ccca4d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ init:
1919
# what combinations to test
2020
environment:
2121
matrix:
22-
- nodejs_version: 0.11
2322
- nodejs_version: 0.10
2423

2524
# Get the latest stable version of Node 0.STABLE.latest

test/tests/clone.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ var path = require("path");
33
var Promise = require("nodegit-promise");
44
var promisify = require("promisify-node");
55
var fse = promisify(require("fs-extra"));
6+
var fixAppveyor = process.env.APPVEYOR ? describe.skip : describe;
67

7-
describe("Clone", function() {
8+
fixAppveyor("Clone", function() {
89
var http = path.resolve("test/repos/http");
910
var https = path.resolve("test/repos/https");
1011
var ssh = path.resolve("test/repos/ssh");

0 commit comments

Comments
 (0)