From d43da658085d9790faee3a5413cecb671a337a98 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Thu, 19 Nov 2015 08:57:44 -0500 Subject: [PATCH] Update appveyor.yml to allow running tests. --- appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a89f760..453a224 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ version: "{build}" -# Don't actually build. +# Do not attempt to build a project build: off # Test against these versions of Node.js. @@ -14,14 +14,17 @@ install: # Typical npm stuff. - md C:\nc - npm install -g npm@latest + - npm install -g bower # Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows - set PATH=%APPDATA%\npm;%PATH% - npm config set cache C:\nc - npm version - npm install + - bower install # Post-install test scripts. test_script: # Output useful info for debugging. - npm version - - cmd: ember try $EMBER_TRY_SCENARIO test + - node --version + - npm test