Skip to content

Commit

Permalink
Don't use subst for testing
Browse files Browse the repository at this point in the history
Node 6.x has trouble including modules
from MS-DOS drives created with subst.exe.

Since we use use subst only to set
symbols paths in the PDB file, let's
revert to the C: drive when doing tests.

Workaround for: nodejs/node#6500
  • Loading branch information
saper committed May 1, 2016
1 parent 0bc5da4 commit 4f5f7bf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
- git submodule update --init --recursive
- npm install --msvs_version=2013

test_script: npm test
test_script:
- ps: set-location -path c:\projects\node_modules\node-sass
- npm test

before_deploy:
# Save artifacts with full qualified names of binding.node and binding.pdb
Expand Down Expand Up @@ -113,4 +115,6 @@
- git submodule update --init --recursive
- npm install --msvs_version=2013

test_script: npm test
test_script:
- ps: set-location -path c:\projects\node_modules\node-sass
- npm test

0 comments on commit 4f5f7bf

Please sign in to comment.