yargs / set-blocking

set blocking stdio and stderr ensuring that terminal output does not truncate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

issue with appveyor

bcoe opened this issue · comments

@JaKXz I've configured appveyor, it looks like there's a slight issue:

https://ci.appveyor.com/project/bcoe/set-blocking

Should be easier to debug now that appveyor is actually turned on 👍

@bcoe The issue here is that the AppVeyor requires the configuration to include a matrix key when there's multiple Node versions required I think:

environment:
  matrix:
    - nodejs_version: "4"
    - nodejs_version: "6"

Running the tests on Windows locally, I've also found they won't pass. This is because the test fixture files call node via a shebang in the heading (#!/usr/bin/env node) which doesn't work on Windows as its an entirely different environment, working on a fix for both.